Home
last modified time | relevance | path

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

/freebsd/contrib/netbsd-tests/lib/libpthread/
H A Dt_equal.c48 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 Dthr_equal.c37 __weak_reference(_thr_equal, pthread_equal);
/freebsd/contrib/ncurses/ncurses/tty/
H A Dlib_tstp.c293 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 Dthrd.c92 return (pthread_equal(thr0, thr1)); in thrd_equal()
/freebsd/contrib/ofed/opensm/complib/
H A Dcl_thread.c139 return (pthread_equal(current, p_thread->osd.id)); in cl_is_current_thread()
/freebsd/cddl/contrib/opensolaris/head/
H A Dthread.h48 #define thr_equal(a,b) pthread_equal(a,b)
/freebsd/crypto/openssl/crypto/
H A Dthreads_pthread.c196 return pthread_equal(a, b); in CRYPTO_THREAD_compare_id()
/freebsd/lib/libc/stdlib/malloc/jemalloc/include/jemalloc/
H A Djemalloc_FreeBSD.h152 #define pthread_equal _pthread_equal macro
/freebsd/lib/libthr/
H A Dpthread.map55 pthread_equal;
/freebsd/include/
H A Dpthread.h217 int pthread_equal(pthread_t, pthread_t);
/freebsd/lib/libc/include/
H A Dnamespace.h133 #define pthread_equal _pthread_equal macro
H A Dun-namespace.h114 #undef pthread_equal
/freebsd/sys/contrib/openzfs/include/sys/
H A Dzfs_context.h271 #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 DSymbol.map33 pthread_equal;
H A D_pthread_stubs.c283 STUB_FUNC2(pthread_equal, PJT_EQUAL, int, void *, void *)
/freebsd/share/man/man3/
H A DMakefile413 pthread_equal.3 \
/freebsd/contrib/jemalloc/src/
H A Dbackground_thread.c523 assert(pthread_equal(pthread_self(),
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddone_abilist.txt355 fun:pthread_equal=discard
H A Dlibc_ubuntu1404_abilist.txt2583 fun:pthread_equal=uninstrumented
/freebsd/contrib/jemalloc/
H A DFREEBSD-diffs313 +#define pthread_equal _pthread_equal
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp101 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 Dcurses.priv.h659 weak_symbol(pthread_equal);
688 weak_symbol(pthread_equal);
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1708 GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self()))
/freebsd/contrib/sqlite3/
H A Dsqlite3.c29403 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()