/freebsd/contrib/netbsd-tests/lib/libpthread/ |
H A D | t_equal.c | 48 ATF_TC(pthread_equal); 49 ATF_TC_HEAD(pthread_equal, tc) in ATF_TC_HEAD() argument 54 ATF_TC_BODY(pthread_equal, tc) in ATF_TC_BODY() argument 61 ATF_REQUIRE(pthread_equal(t1, t1) != 0); in ATF_TC_BODY() 62 ATF_REQUIRE(pthread_equal(t2, t2) != 0); in ATF_TC_BODY() 63 ATF_REQUIRE(pthread_equal(t1, t2) == 0); in ATF_TC_BODY() 71 ATF_TP_ADD_TC(tp, pthread_equal); in ATF_TP_ADD_TCS()
|
/freebsd/lib/libthr/thread/ |
H A D | thr_equal.c | 37 __weak_reference(_thr_equal, pthread_equal);
|
/freebsd/contrib/ncurses/ncurses/tty/ |
H A D | lib_tstp.c | 293 if ((pthread_self) && (pthread_kill) && (pthread_equal)) in _nc_set_read_thread() 311 if (!pthread_equal(pthread_self(), _nc_globals.read_thread)) in handle_SIGWINCH()
|
/freebsd/lib/libstdthreads/ |
H A D | thrd.c | 92 return (pthread_equal(thr0, thr1)); in thrd_equal()
|
/freebsd/contrib/ofed/opensm/complib/ |
H A D | cl_thread.c | 139 return (pthread_equal(current, p_thread->osd.id)); in cl_is_current_thread()
|
/freebsd/cddl/contrib/opensolaris/head/ |
H A D | thread.h | 48 #define thr_equal(a,b) pthread_equal(a,b)
|
/freebsd/crypto/openssl/crypto/ |
H A D | threads_pthread.c | 196 return pthread_equal(a, b); in CRYPTO_THREAD_compare_id()
|
/freebsd/lib/libc/stdlib/malloc/jemalloc/include/jemalloc/ |
H A D | jemalloc_FreeBSD.h | 152 #define pthread_equal _pthread_equal macro
|
/freebsd/lib/libthr/ |
H A D | pthread.map | 55 pthread_equal;
|
/freebsd/include/ |
H A D | pthread.h | 217 int pthread_equal(pthread_t, pthread_t);
|
/freebsd/lib/libc/include/ |
H A D | namespace.h | 133 #define pthread_equal _pthread_equal macro
|
H A D | un-namespace.h | 114 #undef pthread_equal
|
/freebsd/sys/contrib/openzfs/include/sys/ |
H A D | zfs_context.h | 271 #define MUTEX_HELD(mp) pthread_equal((mp)->m_owner, pthread_self()) 301 #define RW_WRITE_HELD(rw) pthread_equal((rw)->rw_owner, pthread_self())
|
/freebsd/lib/libc/gen/ |
H A D | Symbol.map | 33 pthread_equal;
|
H A D | _pthread_stubs.c | 283 STUB_FUNC2(pthread_equal, PJT_EQUAL, int, void *, void *)
|
/freebsd/share/man/man3/ |
H A D | Makefile | 413 pthread_equal.3 \
|
/freebsd/contrib/jemalloc/src/ |
H A D | background_thread.c | 523 assert(pthread_equal(pthread_self(),
|
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
H A D | done_abilist.txt | 355 fun:pthread_equal=discard
|
H A D | libc_ubuntu1404_abilist.txt | 2583 fun:pthread_equal=uninstrumented
|
/freebsd/contrib/jemalloc/ |
H A D | FREEBSD-diffs | 313 +#define pthread_equal _pthread_equal
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_interceptors_posix.cpp | 101 extern "C" int pthread_equal(void *t1, void *t2); 2255 bool self = pthread_equal(tid, pthread_self()); in TSAN_INTERCEPTOR() 2514 if (pthread_equal(pthread_self(), reinterpret_cast<void *>(thread))) \
|
/freebsd/contrib/ncurses/ncurses/ |
H A D | curses.priv.h | 659 weak_symbol(pthread_equal); 688 weak_symbol(pthread_equal);
|
/freebsd/contrib/googletest/googletest/include/gtest/internal/ |
H A D | gtest-port.h | 1708 GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self()))
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 29403 return (p->nRef!=0 && pthread_equal(p->owner, pthread_self())); in pthreadMutexHeld() 29406 return p->nRef==0 || pthread_equal(p->owner, pthread_self())==0; in pthreadMutexNotheld() 29591 if( p->nRef>0 && pthread_equal(p->owner, self) ){ in pthreadMutexEnter() 29634 if( p->nRef>0 && pthread_equal(p->owner, self) ){ in pthreadMutexTry()
|