HomeSort by relevance Sort by last modified time
    Searched defs:Atexit (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_posix_libcdep.cc 117 int Atexit(void (*function)(void)) {
119 return atexit(function);
sanitizer_win.cc 381 // We can't use atexit() directly at __asan_init time as the CRT is not fully
383 // atexit() as soon as it is ready for use (i.e. after .CRT$XIC initializers).
386 int Atexit(void (*function)(void)) {
394 ret |= atexit(atexit_functions[i]);

Completed in 3556 milliseconds