mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
0324daa005
* sysdeps/stub/sys/sem_buf.h (union semun): New type. * sysdeps/mach/hurd/i386/init-first.c (init1) [PIC]: Call __libc_global_ctors. * sysdeps/i386/init-first.c: Rewritten. * sysdeps/unix/sysv/linux/i386/init-first.S: File removed. * sysdeps/unix/sysv/linux/i386/init-first.c: New file. * sysdeps/unix/sysv/linux/i386/fpu_control.h: Fix name in decl of ___fpu_control. * Makerules (build-shlib): New canned sequence, broken out of lib%.so rule. Link in $^ instead of just $<. (lib%.so: lib%_pic.a): Use it. (libc.so): New target; use $(build-shlib) for cmds, but also depend on soinit.so first and sofini.so last. * elf/soinit.c: New file. * elf/sofini.c: New file. * elf/Makefile (distribute): Add soinit.c and sofini.c. (extra-objs): Add soinit.so and sofini.so. * sysvipc/sys/shm.h (shmat): Fix return type to char *. * sysdeps/stub/sys/ipc_buf.h (key_t): Type removed. * misc/syslog.c (vsyslog): Rewritten using open_memstream to dynamically allocate buffers. * Makerules (install-lib-nosubdir): Make this, rather than install-no-libc.a, depend on the installed shared libraries.
39 lines
1023 B
C
39 lines
1023 B
C
/* Initializer module for building the ELF shared C library. This file and
|
|
sofini.c do the work normally done by crtbeginS.o and crtendS.o, to wrap
|
|
the `.ctors' and `.dtors' sections so the lists are terminated, and
|
|
calling those lists of functions. */
|
|
|
|
static void (*const __CTOR_LIST__[1]) (void)
|
|
__attribute__ ((section (".ctors")))
|
|
= { (void (*) (void)) -1 };
|
|
static void (*const __DTOR_LIST__[1]) (void)
|
|
__attribute__ ((section (".dtors")))
|
|
= { (void (*) (void)) -1 };
|
|
|
|
static inline void
|
|
run_hooks (void (*const list[]) (void))
|
|
{
|
|
while (*++list)
|
|
(**list) ();
|
|
}
|
|
|
|
|
|
/* This function will be called from _init in init-first.c. */
|
|
void
|
|
__libc_global_ctors (void)
|
|
{
|
|
/* Call constructor functions. */
|
|
run_hooks (__CTOR_LIST__);
|
|
}
|
|
|
|
|
|
/* This function becomes the DT_FINI termination function
|
|
for the C library. */
|
|
void _fini (void) __attribute__ ((section (".fini"))); /* Just for kicks. */
|
|
void
|
|
_fini (void)
|
|
{
|
|
/* Call destructor functions. */
|
|
run_hooks (__DTOR_LIST__);
|
|
}
|