HomeSort by: relevance | last modified time | path
    Searched refs:pthread_setname_np (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/lib/libpthread/compat/
compat_pthread_setname_np.c 36 __warn_references(pthread_setname_np,
37 "warning: reference to compatibility pthread_setname_np(); include <pthread.h> to generate correct reference")
39 __strong_alias(pthread_setname_np, __compat_pthread_setname_np)
  /src/lib/librumpuser/
configure.ac 63 AC_MSG_CHECKING([for two-argument pthread_setname_np()])
69 [pthread_setname_np(pt, "x");return 0;]])
73 [Define to 1 if you have 2-arg pthread_setname_np()])
77 AC_MSG_CHECKING([for three-argument pthread_setname_np()])
83 [pthread_setname_np(pt, "X", (void *)0);return 0;]])
87 [Define to 1 if you have 3-arg pthread_setname_np()])
rumpuser_pth.c 85 pthread_setname_np(*ptidp, thrname, NULL);
89 pthread_setname_np(*ptidp, thrname);
configure 4117 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for two-argument pthread_setname_np()" >&5
4118 $as_echo_n "checking for two-argument pthread_setname_np()... " >&6; }
4127 pthread_setname_np(pt, "x");return 0;
4148 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for three-argument pthread_setname_np()" >&5
4149 $as_echo_n "checking for three-argument pthread_setname_np()... " >&6; }
4158 pthread_setname_np(pt, "X", (void *)0);return 0;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
names.c 38 res = pthread_setname_np (pthread_self (), arg->name);
70 res = pthread_setname_np (pthread_self (), "main");
attach-many-short-lived-threads.c 78 pthread_setname_np (pthread_self (), "joinable");
97 pthread_setname_np (pthread_self (), "detached");
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
names.c 38 res = pthread_setname_np (pthread_self (), arg->name);
70 res = pthread_setname_np (pthread_self (), "main");
attach-many-short-lived-threads.c 78 pthread_setname_np (pthread_self (), "joinable");
97 pthread_setname_np (pthread_self (), "detached");
  /src/external/bsd/jemalloc/dist/test/src/
thd.c 39 pthread_setname_np(pthread_self(), name);
  /src/external/mpl/dhcp/bind/dist/lib/isc/pthreads/
thread.c 106 * macOS has pthread_setname_np but only works on the
110 (void)pthread_setname_np(thread, name, NULL);
112 (void)pthread_setname_np(thread, name);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/darwin/
pthread.d 46 int pthread_setname_np(const scope char*);
  /src/external/mpl/bind/dist/lib/isc/
thread.c 158 * macOS has pthread_setname_np but only works on the
162 (void)pthread_setname_np(thread, name, NULL);
164 (void)pthread_setname_np(thread, name);
  /src/tests/lib/libpthread/
t_name.c 60 PTHREAD_REQUIRE(pthread_setname_np(self, non_const_name, NULL));
t_cancellation.c 1392 RZ(pthread_setname_np(pthread_self(), "%s", name));
  /src/external/gpl3/gdb.old/dist/gdbsupport/
thread-pool.cc 31 pthread_setname_np on Windows. */
42 /* Handle platform discrepancies in pthread_setname_np: macOS uses a
61 /* The macOS man page says that pthread_setname_np returns "void", but
72 do_set_thread_name (pthread_setname_np, name);
  /src/external/gpl3/gdb/dist/gdbsupport/
thread-pool.cc 31 pthread_setname_np on Windows. */
42 /* Handle platform discrepancies in pthread_setname_np: macOS uses a
61 /* The macOS man page says that pthread_setname_np returns "void", but
72 do_set_thread_name (pthread_setname_np, name);
  /src/external/mit/libuv/dist/src/unix/
thread.c 909 int err = pthread_setname_np(namebuf);
919 return UV__ERR(pthread_setname_np(pthread_self(), "%s", namebuf));
934 return UV__ERR(pthread_setname_np(pthread_self(), namebuf));
  /src/usr.sbin/nfsd/
nfsd.c 128 pthread_setname_np(pthread_self(), "slave", NULL);
552 pthread_setname_np(pthread_self(), "master", NULL);
  /src/tests/lib/libc/sys/
t_ptrace_lwp_wait.h 46 pthread_setname_np(pthread_self(), "thread %d",
100 pthread_setname_np(pthread_self(), "thread %d",
  /src/lib/libpthread/
pthread.h 160 int pthread_setname_np(pthread_t, const char *, void *);
Makefile 222 MLINKS+= pthread_getname_np.3 pthread_setname_np.3
pthread.c 835 pthread_setname_np(pthread_t thread, const char *name, void *arg) function
  /src/external/bsd/jemalloc.old/dist/src/
background_thread.c 432 pthread_setname_np(pthread_self(), "jemalloc_bg_thd");
  /src/external/bsd/jemalloc/dist/src/
background_thread.c 518 pthread_setname_np(pthread_self(), "jemalloc_bg_thd");
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common_interceptors.inc 67 #define pthread_setname_np pthread_set_name_np
4756 INTERCEPTOR(int, pthread_setname_np, uptr thread, const char *name) {
4758 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setname_np, thread, name);
4761 return REAL(pthread_setname_np)(thread, name);
4763 #define INIT_PTHREAD_SETNAME_NP COMMON_INTERCEPT_FUNCTION(pthread_setname_np);
4765 INTERCEPTOR(int, pthread_setname_np, uptr thread, const char *name, void *arg) {
4768 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setname_np, thread, name, arg);
4772 return REAL(pthread_setname_np)(thread, name, arg);
4774 #define INIT_PTHREAD_SETNAME_NP COMMON_INTERCEPT_FUNCTION(pthread_setname_np);

Completed in 33 milliseconds

1 2