Blame elf/tst-dlopenfailmod2.c

Packit Service 56ad6a
/* Module which depends on on a NODELETE module, and can be loaded.
Packit Service 56ad6a
   Copyright (C) 2019 Free Software Foundation, Inc.
Packit Service 56ad6a
   This file is part of the GNU C Library.
Packit Service 56ad6a
Packit Service 56ad6a
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 56ad6a
   modify it under the terms of the GNU Lesser General Public
Packit Service 56ad6a
   License as published by the Free Software Foundation; either
Packit Service 56ad6a
   version 2.1 of the License, or (at your option) any later version.
Packit Service 56ad6a
Packit Service 56ad6a
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 56ad6a
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 56ad6a
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 56ad6a
   Lesser General Public License for more details.
Packit Service 56ad6a
Packit Service 56ad6a
   You should have received a copy of the GNU Lesser General Public
Packit Service 56ad6a
   License along with the GNU C Library; if not, see
Packit Service 56ad6a
   <https://www.gnu.org/licenses/>.  */
Packit Service 56ad6a
Packit Service 56ad6a
#include <pthread.h>
Packit Service 56ad6a
#include <stdio.h>
Packit Service 56ad6a
Packit Service 56ad6a
/* Force linking against libpthread.  */
Packit Service 56ad6a
void *pthread_create_reference = pthread_create;
Packit Service 56ad6a
Packit Service 56ad6a
static void __attribute__ ((constructor))
Packit Service 56ad6a
init (void)
Packit Service 56ad6a
{
Packit Service 56ad6a
  puts ("info: tst-dlopenfailmod2.so constructor invoked");
Packit Service 56ad6a
}