1995-09-21 08:24:21 +02:00
|
|
|
/* 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. */
|
|
|
|
|
2000-12-31 20:13:04 +01:00
|
|
|
#include <libc-internal.h>
|
2001-11-16 02:27:24 +01:00
|
|
|
#include <stdlib.h>
|
2000-12-31 20:13:04 +01:00
|
|
|
|
1995-09-21 08:24:21 +02:00
|
|
|
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. */
|
2003-11-26 08:15:17 +01:00
|
|
|
void
|
|
|
|
__libc_fini (void)
|
1995-09-21 08:24:21 +02:00
|
|
|
{
|
|
|
|
/* Call destructor functions. */
|
|
|
|
run_hooks (__DTOR_LIST__);
|
|
|
|
}
|
2005-11-05 18:46:24 +01:00
|
|
|
|
2003-11-26 08:15:17 +01:00
|
|
|
void (*_fini_ptr) (void) __attribute__ ((section (".fini_array")))
|
|
|
|
= &__libc_fini;
|