24 for (
void (**ctor)() = &
CTOR_LIST; *ctor; ctor++)
32 for (
void (**dtor)() = &
DTOR_LIST; *dtor; dtor++)
50extern C int __cxa_atexit(
void (*func) (
void *),
void * arg,
void * dso_handle)
void(* CTOR_LIST)()
List of constructors.
void(* DTOR_LIST)()
List of destructors.
C void __stack_chk_fail(void)
C int __cxa_atexit(void(*func)(void *), void *arg, void *dso_handle)
C void __cxa_pure_virtual()
Unknown function, required by g++.
C void destructors()
Invokes function pointers inside the .dtors section.
C void constructors()
Invokes all function pointers inside the .ctors section.
#define C
Used to define external C functions.