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 132 int Atexit(void (*function)(void)) {
134 return atexit(function);
sanitizer_win.cc 521 // We can't use atexit() directly at __asan_init time as the CRT is not fully
523 // atexit() as soon as it is ready for use (i.e. after .CRT$XIC initializers).
526 int Atexit(void (*function)(void)) {
534 ret |= atexit(atexit_functions[i]);

Completed in 315 milliseconds