Home
last modified time | relevance | path

Searched refs:on_exits (Results 1 – 1 of 1) sorted by relevance

/picolibc-latest/newlib/libc/stdlib/
Dpico-onexit.c50 static struct on_exit on_exits[ATEXIT_MAX]; variable
59 if (on_exits[o].kind == PICO_ONEXIT_EMPTY) { in _on_exit()
60 on_exits[o].func = func; in _on_exit()
61 on_exits[o].arg = arg; in _on_exit()
62 on_exits[o].kind = kind; in _on_exit()
90 kind = on_exits[i].kind; in __call_exitprocs()
92 func = on_exits[i].func; in __call_exitprocs()
93 arg = on_exits[i].arg; in __call_exitprocs()
94 memset(&on_exits[i], '\0', sizeof(struct on_exit)); in __call_exitprocs()