Searched refs:thread_event_callbacks (Results 1 – 1 of 1) sorted by relevance
1412 static ThreadEventCallbacks thread_event_callbacks; variable1428 if (thread_event_callbacks.create) in sanitizer_pthread_introspection_hook()1429 thread_event_callbacks.create((uptr)thread, gcd_worker); in sanitizer_pthread_introspection_hook()1432 if (thread_event_callbacks.start) in sanitizer_pthread_introspection_hook()1433 thread_event_callbacks.start((uptr)thread); in sanitizer_pthread_introspection_hook()1441 if (thread_event_callbacks.terminate) in sanitizer_pthread_introspection_hook()1442 thread_event_callbacks.terminate((uptr)thread); in sanitizer_pthread_introspection_hook()1444 if (thread_event_callbacks.destroy) in sanitizer_pthread_introspection_hook()1445 thread_event_callbacks.destroy((uptr)thread); in sanitizer_pthread_introspection_hook()1450 thread_event_callbacks = callbacks; in InstallPthreadIntrospectionHook()