825adeeed1
Since __dso_handle is always defined by either crtbegin.o from GCC or dso_handle.c, it should be marked as hidden and be passed directly. [BZ #18822] * dlfcn/modatexit.c (foo): Remove __dso_handle check. * dlfcn/modcxaatexit.c: Include <dso_handle.h>. (__dso_handle): Remove declaration. * dlfcn/tstatexit.c (__dso_handle): Removed. (main): Don't check __dso_handle. * dlfcn/tstcxaatexit.c (__dso_handle): Removed. (main): Don't check __dso_handle. * include/dso_handle.h: New file. * malloc/mtrace.c: Include <dso_handle.h>. (mtrace): Pass __dso_handle directly. * nptl/pthread_atfork.c: Include <dso_handle.h>. (__dso_handle): Remove declaration. (__pthread_atfork): Pass __dso_handle directly. * nptl/tst-atfork2mod.c: Include <dso_handle.h>. (__dso_handle): Removed. * posix/wordexp-test.c: Include <dso_handle.h>. (__dso_handle): Remove declaration. (__app_register_atfork): Pass __dso_handle directly. * stdlib/at_quick_exit.c: Include <dso_handle.h>. (__dso_handle): Remove declaration. (at_quick_exit): Pass __dso_handle directly. * stdlib/atexit.c: Include <dso_handle.h>. (__dso_handle): Remove declaration. (atexit): Pass __dso_handle directly. * stdlib/tst-tls-atexit-lib.c: Include <dso_handle.h>. (__dso_handle): Removed.
63 lines
1.4 KiB
C
63 lines
1.4 KiB
C
/* Copyright (C) 2001-2017 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
#include <dlfcn.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
const char fname[] = "modatexit.so";
|
|
void *h;
|
|
void (*fp) (void *);
|
|
int v = 0;
|
|
|
|
h = dlopen (fname, RTLD_NOW);
|
|
if (h == NULL)
|
|
{
|
|
printf ("cannot open \"%s\": %s\n", fname, dlerror ());
|
|
exit (1);
|
|
}
|
|
|
|
fp = dlsym (h, "foo");
|
|
if (fp == NULL)
|
|
{
|
|
printf ("cannot find \"foo\": %s\n", dlerror ());
|
|
exit (1);
|
|
}
|
|
|
|
fp (&v);
|
|
|
|
if (dlclose (h) != 0)
|
|
{
|
|
printf ("cannot close \"%s\": %s\n", fname, dlerror ());
|
|
exit (1);
|
|
}
|
|
|
|
if (v != 1)
|
|
{
|
|
puts ("module unload didn't change `v'");
|
|
exit (1);
|
|
}
|
|
|
|
puts ("finishing now");
|
|
|
|
return 0;
|
|
}
|