Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mac.cpp1411 static ThreadEventCallbacks thread_event_callbacks; variable
1427 if (thread_event_callbacks.create) in sanitizer_pthread_introspection_hook()
1428 thread_event_callbacks.create((uptr)thread, gcd_worker); in sanitizer_pthread_introspection_hook()
1431 if (thread_event_callbacks.start) in sanitizer_pthread_introspection_hook()
1432 thread_event_callbacks.start((uptr)thread); in sanitizer_pthread_introspection_hook()
1440 if (thread_event_callbacks.terminate) in sanitizer_pthread_introspection_hook()
1441 thread_event_callbacks.terminate((uptr)thread); in sanitizer_pthread_introspection_hook()
1443 if (thread_event_callbacks.destroy) in sanitizer_pthread_introspection_hook()
1444 thread_event_callbacks.destroy((uptr)thread); in sanitizer_pthread_introspection_hook()
1449 thread_event_callbacks = callbacks; in InstallPthreadIntrospectionHook()