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

/freebsd-11-stable/lib/libc/stdlib/
H A Datexit.c82 static struct atexit *__atexit; /* points to head of LIFO stack */ variable in typeref:struct:atexit
100 if ((p = __atexit) == NULL)
101 __atexit = p = &__atexit0;
104 old__atexit = __atexit;
109 if (old__atexit != __atexit) {
114 p = __atexit;
118 p->next = __atexit;
119 __atexit = p;
215 for (p = __atexit; p; p = p->next) {

Completed in 52 milliseconds