Searched refs:__atexit (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.0-release/lib/libc/stdlib/
H A Datexit.c74 static struct atexit *__atexit; /* points to head of LIFO stack */ variable in typeref:struct:atexit
88 if ((p = __atexit) == NULL)
89 __atexit = p = &__atexit0;
92 old__atexit = __atexit;
97 if (old__atexit != __atexit) {
102 p = __atexit;
106 p->next = __atexit;
107 __atexit = p;
173 for (p = __atexit; p; p = p->next) {

Completed in 98 milliseconds