7d93246124
(HAVE_DWARF2_UNWIND_INFO{,_STATIC}): Remove AC_DEFINEs. * configure: Regenerate. * config.h.in (HAVE_DWARF2_UNWIND_INFO{,_STATIC}): Remove undefs. * elf/soinit.c: Don't include gccframe.h. (__EH_FRAME_BEGIN__): Define unconditionally. (__register_frame_info, __deregister_frame_info) (__register_frame_info_bases, __deregister_frame_info_bases) (__register_frame, __deregister_frame): Remove declarations. (__libc_global_ctors, __libc_fini): Don't call registry functions. * elf/sofini.c (__EH_FRAME_END__): Define unconditionally.
47 lines
1.2 KiB
C
47 lines
1.2 KiB
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. */
|
|
|
|
#include <libc-internal.h>
|
|
#include <stdlib.h>
|
|
|
|
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) ();
|
|
}
|
|
|
|
static char __EH_FRAME_BEGIN__[]
|
|
__attribute__ ((section (".eh_frame")))
|
|
= { };
|
|
|
|
/* 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
|
|
__libc_fini (void)
|
|
{
|
|
/* Call destructor functions. */
|
|
run_hooks (__DTOR_LIST__);
|
|
}
|
|
|
|
void (*_fini_ptr) (void) __attribute__ ((section (".fini_array")))
|
|
= &__libc_fini;
|