Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/netbsd-tests/lib/libpthread/
Dt_name.c60 PTHREAD_REQUIRE(pthread_setname_np(self, non_const_name, NULL)); in threadfunc()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/Unix/
DThreading.inc175 ::pthread_setname_np(::pthread_self(), NameStr.data());
181 ::pthread_setname_np(::pthread_self(), "%s",
184 ::pthread_setname_np(NameStr.data());
/freebsd-12-stable/lib/libthr/thread/
Dthr_info.c59 __weak_reference(_pthread_setname_np, pthread_setname_np);
/freebsd-12-stable/contrib/netbsd-tests/lib/libpthread_dbg/
Dt_threads.c300 (pthread_setname_np(threads[i], "test_%d", (void*)i)); in ATF_TC_BODY()
381 (pthread_setname_np(threads[i], "test_%d", (void*)i)); in ATF_TC_BODY()
/freebsd-12-stable/lib/libthr/
Dpthread.map333 pthread_setname_np;
/freebsd-12-stable/lib/libc/include/
Dnamespace.h195 #define pthread_setname_np _pthread_setname_np macro
Dun-namespace.h176 #undef pthread_setname_np
/freebsd-12-stable/include/
Dpthread.h306 int pthread_setname_np(pthread_t, const char *);
/freebsd-12-stable/share/man/man3/
DMakefile368 pthread_set_name_np.3 pthread_setname_np.3
/freebsd-12-stable/contrib/jemalloc/src/
Dbackground_thread.c512 pthread_setname_np(pthread_self(), "jemalloc_bg_thd");
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/dfsan/
Ddone_abilist.txt347 fun:pthread_setname_np=discard
Dlibc_ubuntu1404_abilist.txt2640 fun:pthread_setname_np=uninstrumented
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc67 #define pthread_setname_np pthread_set_name_np
4966 INTERCEPTOR(int, pthread_setname_np, uptr thread, const char *name) {
4968 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setname_np, thread, name);
4971 return REAL(pthread_setname_np)(thread, name);
4973 #define INIT_PTHREAD_SETNAME_NP COMMON_INTERCEPT_FUNCTION(pthread_setname_np);
4975 INTERCEPTOR(int, pthread_setname_np, uptr thread, const char *name, void *arg) {
4978 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setname_np, thread, name, arg);
4982 return REAL(pthread_setname_np)(thread, name, arg);
4984 #define INIT_PTHREAD_SETNAME_NP COMMON_INTERCEPT_FUNCTION(pthread_setname_np);