reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
27 bool InterceptFunction(const char *name, const char *ver, uptr *ptr_to_real,
313 INTERCEPT_FUNCTION_VER(pthread_cond_init, "GLIBC_2.3.2"); 314 INTERCEPT_FUNCTION_VER(pthread_cond_signal, "GLIBC_2.3.2"); 315 INTERCEPT_FUNCTION_VER(pthread_cond_broadcast, "GLIBC_2.3.2"); 316 INTERCEPT_FUNCTION_VER(pthread_cond_wait, "GLIBC_2.3.2"); 317 INTERCEPT_FUNCTION_VER(pthread_cond_timedwait, "GLIBC_2.3.2"); 318 INTERCEPT_FUNCTION_VER(pthread_cond_destroy, "GLIBC_2.3.2");projects/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp
2677 TSAN_INTERCEPT_VER(pthread_cond_init, PTHREAD_ABI_BASE); 2678 TSAN_INTERCEPT_VER(pthread_cond_signal, PTHREAD_ABI_BASE); 2679 TSAN_INTERCEPT_VER(pthread_cond_broadcast, PTHREAD_ABI_BASE); 2680 TSAN_INTERCEPT_VER(pthread_cond_wait, PTHREAD_ABI_BASE); 2681 TSAN_INTERCEPT_VER(pthread_cond_timedwait, PTHREAD_ABI_BASE); 2682 TSAN_INTERCEPT_VER(pthread_cond_destroy, PTHREAD_ABI_BASE);