Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/
H A Dpthread.d954 int pthread_spin_destroy(pthread_spinlock_t*);
963 int pthread_spin_destroy(pthread_spinlock_t*);
971 int pthread_spin_destroy(pthread_spinlock_t*);
979 int pthread_spin_destroy(pthread_spinlock_t*);
987 int pthread_spin_destroy(pthread_spinlock_t*);
998 int pthread_spin_destroy(pthread_spinlock_t*);
1008 int pthread_spin_destroy(pthread_spinlock_t*);
1016 int pthread_spin_destroy(pthread_spinlock_t*);
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/
H A Ddd_interceptors.cc71 INTERCEPTOR(int, pthread_spin_destroy, pthread_spinlock_t *m) { in INTERCEPTOR() argument
73 int res = REAL(pthread_spin_destroy)(m); in INTERCEPTOR()
300 INTERCEPT_FUNCTION(pthread_spin_destroy); in InitializeInterceptors()
/netbsd-src/lib/libpthread/
H A Dpthread_spin.c77 pthread_spin_destroy(pthread_spinlock_t *lock) in pthread_spin_destroy() function
H A Dpthread.h187 int pthread_spin_destroy(pthread_spinlock_t *);
H A DMakefile245 MLINKS+= pthread_spin.3 pthread_spin_destroy.3
/netbsd-src/lib/libukfs/
H A Dukfs.c115 #define pthread_spin_destroy(a) macro
717 pthread_spin_destroy(&fs->ukfs_spin); in ukfs_release()
741 pthread_spin_destroy(&part->part_lck); in ukfs_part_release()
/netbsd-src/external/bsd/unbound/dist/util/
H A Dlocks.h144 #define lock_quick_destroy(lock) LOCKRET(pthread_spin_destroy(lock))
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
H A Dtsan_test_util_posix.cc131 CHECK_EQ(pthread_spin_destroy((pthread_spinlock_t*)mtx_), 0); in Destroy()
/netbsd-src/lib/librumpuser/
H A Drumpuser_pth.c472 NOFAIL_ERRNO(pthread_spin_destroy(&rw->spin)); in rumpuser_rw_destroy()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_interceptors.cc1242 TSAN_INTERCEPTOR(int, pthread_spin_destroy, void *m) { in TSAN_INTERCEPTOR() argument
1243 SCOPED_TSAN_INTERCEPTOR(pthread_spin_destroy, m); in TSAN_INTERCEPTOR()
1244 int res = REAL(pthread_spin_destroy)(m); in TSAN_INTERCEPTOR()
2655 TSAN_INTERCEPT(pthread_spin_destroy); in InitializeInterceptors()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_interceptors_posix.cpp1351 TSAN_INTERCEPTOR(int, pthread_spin_destroy, void *m) { in TSAN_INTERCEPTOR() argument
1352 SCOPED_TSAN_INTERCEPTOR(pthread_spin_destroy, m); in TSAN_INTERCEPTOR()
1353 int res = REAL(pthread_spin_destroy)(m); in TSAN_INTERCEPTOR()
2804 TSAN_INTERCEPT(pthread_spin_destroy); in InitializeInterceptors()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_interceptors.cc1284 TSAN_INTERCEPTOR(int, pthread_spin_destroy, void *m) { in TSAN_INTERCEPTOR() argument
1285 SCOPED_TSAN_INTERCEPTOR(pthread_spin_destroy, m); in TSAN_INTERCEPTOR()
1286 int res = REAL(pthread_spin_destroy)(m); in TSAN_INTERCEPTOR()
2703 TSAN_INTERCEPT(pthread_spin_destroy); in InitializeInterceptors()
/netbsd-src/external/bsd/unbound/dist/testcode/
H A Dchecklocks.c387 LOCKRET(pthread_spin_destroy(&e->u.spinlock)); in checklock_destroy()