Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
HDFuzzerUtilLinux.cpp45 (void)pthread_setname_np(thread.native_handle(), name.c_str()); in SetThreadName()
47 (void)pthread_setname_np(thread.native_handle(), "%s", const_cast<char *>(name.c_str())); in SetThreadName()
/freebsd-13-stable/contrib/netbsd-tests/lib/libpthread/
HDt_name.c60 PTHREAD_REQUIRE(pthread_setname_np(self, non_const_name, NULL)); in threadfunc()
/freebsd-13-stable/lib/libthr/thread/
HDthr_info.c56 __weak_reference(_pthread_setname_np, pthread_setname_np);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Unix/
HDThreading.inc180 ::pthread_setname_np(::pthread_self(), NameStr.data());
186 ::pthread_setname_np(::pthread_self(), "%s",
189 ::pthread_setname_np(NameStr.data());
/freebsd-13-stable/contrib/netbsd-tests/lib/libpthread_dbg/
HDt_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-13-stable/lib/libthr/
HDpthread.map335 pthread_setname_np;
/freebsd-13-stable/lib/libc/include/
HDnamespace.h193 #define pthread_setname_np _pthread_setname_np macro
HDun-namespace.h174 #undef pthread_setname_np
/freebsd-13-stable/include/
HDpthread.h304 int pthread_setname_np(pthread_t, const char *);
/freebsd-13-stable/sys/contrib/openzfs/cmd/zed/
HDzed_disk_event.c434 pthread_setname_np(g_mon_tid, "udev monitor"); in zed_disk_event_init()
HDzed_exec.c337 pthread_setname_np(_reap_children_tid, "reap ZEDLETs"); in zed_exec_process()
/freebsd-13-stable/sys/contrib/openzfs/cmd/zed/agents/
HDzfs_agents.c419 pthread_setname_np(g_agents_tid, "agents"); in zfs_agent_init()
HDzfs_mod.c1299 pthread_setname_np(g_zfs_tid, "enum-pools"); in zfs_slm_init()
/freebsd-13-stable/share/man/man3/
HDMakefile515 pthread_set_name_np.3 pthread_setname_np.3
/freebsd-13-stable/contrib/jemalloc/src/
HDbackground_thread.c510 pthread_setname_np(pthread_self(), "jemalloc_bg_thd");
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/dfsan/
HDdone_abilist.txt378 fun:pthread_setname_np=discard
HDlibc_ubuntu1404_abilist.txt2646 fun:pthread_setname_np=uninstrumented
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
HDsanitizer_common_interceptors.inc62 #define pthread_setname_np pthread_set_name_np
5079 INTERCEPTOR(int, pthread_setname_np, uptr thread, const char *name) {
5081 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setname_np, thread, name);
5084 return REAL(pthread_setname_np)(thread, name);
5086 #define INIT_PTHREAD_SETNAME_NP COMMON_INTERCEPT_FUNCTION(pthread_setname_np);
5088 INTERCEPTOR(int, pthread_setname_np, uptr thread, const char *name, void *arg) {
5091 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setname_np, thread, name, arg);
5095 return REAL(pthread_setname_np)(thread, name, arg);
5097 #define INIT_PTHREAD_SETNAME_NP COMMON_INTERCEPT_FUNCTION(pthread_setname_np);