Searched defs:atexit (Results 1 - 4 of 4) sorted by relevance

/bionic/libc/arch-arm/bionic/
H A Datexit.S40 .hidden atexit
43 ENTRY(atexit) function
61 END(atexit)
/bionic/libc/arch-x86/bionic/
H A Datexit.S30 .globl atexit
31 .hidden atexit
32 .type atexit, @function
33 atexit: label
50 .size atexit, .-atexit
/bionic/libc/stdlib/
H A Datexit.h1 /* $OpenBSD: atexit.h,v 1.7 2007/09/03 14:40:16 millert Exp $ */
33 struct atexit { struct
34 struct atexit *next; /* next in list */
48 extern struct atexit *__atexit; /* points to head of LIFO stack */
H A Datexit.c1 /* $OpenBSD: atexit.c,v 1.14 2007/09/05 20:47:47 chl Exp $ */
37 #include "atexit.h"
41 struct atexit *__atexit;
56 * the backend for atexit(). For more info on this API, see:
63 struct atexit *p = __atexit;
112 atexit(void (*func)(void)) function
126 struct atexit *p, *q;
189 struct atexit *p;

Completed in 80 milliseconds