include/signal.h
76
int pthread_kill(pthread_t, int);
lib/libc/include/reentrant.h
121
#define thr_t pthread_t
lib/libc/include/reentrant.h
273
int __libc_thr_equal_stub(pthread_t, pthread_t);
lib/libc/thread-stub/thread-stub.c
106
__libc_thr_detach_stub(pthread_t thread)
lib/libc/thread-stub/thread-stub.c
476
__libc_thr_equal_stub(pthread_t t1, pthread_t t2)
lib/libc/thread-stub/thread-stub.c
97
__libc_thr_join_stub(pthread_t thread, void **valptr)
lib/libisns/isns_config.h
63
pthread_t *control_thread_p;
lib/libisns/isns_util.c
125
cfg_p->control_thread_p = (pthread_t *)isns_malloc(sizeof(pthread_t));
lib/libpthread/compat/compat_pthread_setname_np.c
43
__compat_pthread_setname_np(pthread_t thread, const char *name, void *arg)
lib/libpthread/compat/pthread.h
11
int __pthread_setname_np120(pthread_t, const char *, ...);
lib/libpthread/compat/pthread.h
9
int __compat_pthread_setname_np(pthread_t, const char *, void *)
lib/libpthread/pthread.c
100
static void pthread__scrubthread(pthread_t, char *, int);
lib/libpthread/pthread.c
101
static void pthread__initmain(pthread_t *);
lib/libpthread/pthread.c
102
static void pthread__reap(pthread_t);
lib/libpthread/pthread.c
1036
pthread_t self;
lib/libpthread/pthread.c
1050
pthread__find(pthread_t id)
lib/libpthread/pthread.c
1052
pthread_t target;
lib/libpthread/pthread.c
1065
pthread__testcancel(pthread_t self)
lib/libpthread/pthread.c
1095
pthread_t self;
lib/libpthread/pthread.c
1109
pthread_t self;
lib/libpthread/pthread.c
1124
pthread_t self;
lib/libpthread/pthread.c
1213
pthread__park(pthread_t self, pthread_mutex_t *lock,
lib/libpthread/pthread.c
1271
pthread__unpark(pthread_queue_t *queue, pthread_t self,
lib/libpthread/pthread.c
1274
pthread_t target;
lib/libpthread/pthread.c
1283
pthread__unpark_all(pthread_queue_t *queue, pthread_t self,
lib/libpthread/pthread.c
1288
pthread_t target;
lib/libpthread/pthread.c
1352
pthread__initmain(pthread_t *newt)
lib/libpthread/pthread.c
204
pthread_t first;
lib/libpthread/pthread.c
303
pthread__initthread(pthread_t t)
lib/libpthread/pthread.c
318
pthread__scrubthread(pthread_t t, char *name, int flags)
lib/libpthread/pthread.c
331
pthread__getstack(pthread_t newthread, const pthread_attr_t *attr)
lib/libpthread/pthread.c
399
pthread_create(pthread_t *thread, const pthread_attr_t *attr,
lib/libpthread/pthread.c
402
pthread_t newthread;
lib/libpthread/pthread.c
576
pthread_t self;
lib/libpthread/pthread.c
610
pthread_suspend_np(pthread_t thread)
lib/libpthread/pthread.c
612
pthread_t self;
lib/libpthread/pthread.c
629
pthread_resume_np(pthread_t thread)
lib/libpthread/pthread.c
645
pthread_t self;
lib/libpthread/pthread.c
700
pthread_join(pthread_t thread, void **valptr)
lib/libpthread/pthread.c
702
pthread_t self;
lib/libpthread/pthread.c
742
pthread__reap(pthread_t thread)
lib/libpthread/pthread.c
760
pthread_equal(pthread_t t1, pthread_t t2)
lib/libpthread/pthread.c
778
pthread_detach(pthread_t thread)
lib/libpthread/pthread.c
808
pthread_getname_np(pthread_t thread, char *name, size_t len)
lib/libpthread/pthread.c
829
pthread_setname_np(pthread_t thread, const char *name, void *arg)
lib/libpthread/pthread.c
861
pthread_t
lib/libpthread/pthread.c
865
return (pthread_t)__libc_thr_self_stub();
lib/libpthread/pthread.c
872
pthread_cancel(pthread_t thread)
lib/libpthread/pthread.c
911
pthread_t self;
lib/libpthread/pthread.c
989
pthread_t self;
lib/libpthread/pthread.c
99
static void pthread__initthread(pthread_t);
lib/libpthread/pthread.h
154
int pthread_cancel(pthread_t);
lib/libpthread/pthread.h
159
int pthread_getname_np(pthread_t, char *, size_t);
lib/libpthread/pthread.h
160
int pthread_setname_np(pthread_t, const char *, void *);
lib/libpthread/pthread.h
163
int pthread_suspend_np(pthread_t);
lib/libpthread/pthread.h
164
int pthread_resume_np(pthread_t);
lib/libpthread/pthread.h
170
int pthread_getcpuclockid(pthread_t, clockid_t *);
lib/libpthread/pthread.h
226
int pthread_getschedparam(pthread_t, int * __restrict,
lib/libpthread/pthread.h
228
int pthread_setschedparam(pthread_t, int, const struct sched_param *);
lib/libpthread/pthread.h
229
int pthread_setschedprio(pthread_t, int);
lib/libpthread/pthread.h
234
int pthread_getaffinity_np(pthread_t, size_t, cpuset_t *);
lib/libpthread/pthread.h
235
int pthread_setaffinity_np(pthread_t, size_t, cpuset_t *);
lib/libpthread/pthread.h
236
int pthread_getattr_np(pthread_t, pthread_attr_t *);
lib/libpthread/pthread.h
239
pthread_t pthread_mutex_owner_np(pthread_mutex_t *);
lib/libpthread/pthread.h
340
int __libc_thr_create(pthread_t * __restrict,
lib/libpthread/pthread.h
343
int __libc_thr_detach(pthread_t);
lib/libpthread/pthread.h
344
int __libc_thr_join(pthread_t, void **);
lib/libpthread/pthread.h
447
pthread_t __libc_thr_self(void);
lib/libpthread/pthread.h
450
int __libc_thr_equal(pthread_t, pthread_t);
lib/libpthread/pthread.h
48
int pthread_create(pthread_t * __restrict,
lib/libpthread/pthread.h
52
int pthread_join(pthread_t, void **);
lib/libpthread/pthread.h
53
int pthread_equal(pthread_t, pthread_t);
lib/libpthread/pthread.h
54
pthread_t pthread_self(void);
lib/libpthread/pthread.h
55
int pthread_detach(pthread_t);
lib/libpthread/pthread.h
62
int pthread_attr_get_np(pthread_t, pthread_attr_t *);
lib/libpthread/pthread_attr.c
109
pthread_attr_get_np(pthread_t thread, pthread_attr_t *attr)
lib/libpthread/pthread_attr.c
533
pthread_getattr_np(pthread_t thread, pthread_attr_t *attr)
lib/libpthread/pthread_barrier.c
79
pthread_t self;
lib/libpthread/pthread_cancelstub.c
164
pthread_t self;
lib/libpthread/pthread_cancelstub.c
178
pthread_t self;
lib/libpthread/pthread_cancelstub.c
193
pthread_t self;
lib/libpthread/pthread_cancelstub.c
208
pthread_t self;
lib/libpthread/pthread_cancelstub.c
222
pthread_t self;
lib/libpthread/pthread_cancelstub.c
236
pthread_t self;
lib/libpthread/pthread_cancelstub.c
250
pthread_t self;
lib/libpthread/pthread_cancelstub.c
267
pthread_t self;
lib/libpthread/pthread_cancelstub.c
281
pthread_t self;
lib/libpthread/pthread_cancelstub.c
295
pthread_t self;
lib/libpthread/pthread_cancelstub.c
310
pthread_t self;
lib/libpthread/pthread_cancelstub.c
324
pthread_t self;
lib/libpthread/pthread_cancelstub.c
338
pthread_t self;
lib/libpthread/pthread_cancelstub.c
353
pthread_t self;
lib/libpthread/pthread_cancelstub.c
369
pthread_t self;
lib/libpthread/pthread_cancelstub.c
384
pthread_t self;
lib/libpthread/pthread_cancelstub.c
398
pthread_t self;
lib/libpthread/pthread_cancelstub.c
412
pthread_t self;
lib/libpthread/pthread_cancelstub.c
426
pthread_t self;
lib/libpthread/pthread_cancelstub.c
444
pthread_t self;
lib/libpthread/pthread_cancelstub.c
461
pthread_t self;
lib/libpthread/pthread_cancelstub.c
478
pthread_t self;
lib/libpthread/pthread_cancelstub.c
493
pthread_t self;
lib/libpthread/pthread_cancelstub.c
507
pthread_t self;
lib/libpthread/pthread_cancelstub.c
522
pthread_t self;
lib/libpthread/pthread_cancelstub.c
537
pthread_t self;
lib/libpthread/pthread_cancelstub.c
551
pthread_t self;
lib/libpthread/pthread_cancelstub.c
565
pthread_t self;
lib/libpthread/pthread_cancelstub.c
580
pthread_t self;
lib/libpthread/pthread_cancelstub.c
595
pthread_t self;
lib/libpthread/pthread_cancelstub.c
609
pthread_t self;
lib/libpthread/pthread_cancelstub.c
624
pthread_t self;
lib/libpthread/pthread_cancelstub.c
639
pthread_t self;
lib/libpthread/pthread_cancelstub.c
653
pthread_t self;
lib/libpthread/pthread_cancelstub.c
668
pthread_t self;
lib/libpthread/pthread_cancelstub.c
681
pthread_t self;
lib/libpthread/pthread_cancelstub.c
696
pthread_t self;
lib/libpthread/pthread_cancelstub.c
717
pthread_t self;
lib/libpthread/pthread_cancelstub.c
740
pthread_t self;
lib/libpthread/pthread_cancelstub.c
754
pthread_t self;
lib/libpthread/pthread_cancelstub.c
768
pthread_t self;
lib/libpthread/pthread_cancelstub.c
782
pthread_t self;
lib/libpthread/pthread_cond.c
129
pthread_t self;
lib/libpthread/pthread_cond.c
241
pthread_t self;
lib/libpthread/pthread_cond.c
286
pthread_t self;
lib/libpthread/pthread_getcpuclockid.c
47
pthread_getcpuclockid(pthread_t thread, clockid_t *clock_id)
lib/libpthread/pthread_int.h
197
void pthread__unpark_all(pthread_queue_t *, pthread_t, pthread_mutex_t *)
lib/libpthread/pthread_int.h
199
void pthread__unpark(pthread_queue_t *, pthread_t, pthread_mutex_t *)
lib/libpthread/pthread_int.h
201
int pthread__park(pthread_t, pthread_mutex_t *, pthread_queue_t *,
lib/libpthread/pthread_int.h
209
static inline void pthread__spinlock(pthread_t, pthread_spin_t *)
lib/libpthread/pthread_int.h
212
pthread__spinlock(pthread_t self, pthread_spin_t *lock)
lib/libpthread/pthread_int.h
219
static inline int pthread__spintrylock(pthread_t, pthread_spin_t *)
lib/libpthread/pthread_int.h
222
pthread__spintrylock(pthread_t self, pthread_spin_t *lock)
lib/libpthread/pthread_int.h
227
static inline void pthread__spinunlock(pthread_t, pthread_spin_t *)
lib/libpthread/pthread_int.h
230
pthread__spinunlock(pthread_t self, pthread_spin_t *lock)
lib/libpthread/pthread_int.h
242
void pthread__testcancel(pthread_t) PTHREAD_HIDE;
lib/libpthread/pthread_int.h
243
int pthread__find(pthread_t) PTHREAD_HIDE;
lib/libpthread/pthread_int.h
267
static inline pthread_t __constfunc
lib/libpthread/pthread_int.h
277
return (pthread_t)tcb->tcb_pthread;
lib/libpthread/pthread_int.h
296
void pthread__destroy_tsd(pthread_t) PTHREAD_HIDE;
lib/libpthread/pthread_int.h
297
void pthread__copy_tsd(pthread_t) PTHREAD_HIDE;
lib/libpthread/pthread_int.h
305
void pthread__mutex_deferwake(pthread_t, pthread_mutex_t *,
lib/libpthread/pthread_int.h
308
int pthread__add_specific(pthread_t, pthread_key_t, const void *) PTHREAD_HIDE;
lib/libpthread/pthread_int.h
92
pthread_t pt_self; /* Must be first. */
lib/libpthread/pthread_lock.c
149
pthread_t self;
lib/libpthread/pthread_misc.c
115
pthread_setaffinity_np(pthread_t thread, size_t size, cpuset_t *cpuset)
lib/libpthread/pthread_misc.c
131
pthread_setschedprio(pthread_t thread, int prio)
lib/libpthread/pthread_misc.c
149
pthread_kill(pthread_t thread, int sig)
lib/libpthread/pthread_misc.c
64
pthread_getschedparam(pthread_t thread, int *policy, struct sched_param *param)
lib/libpthread/pthread_misc.c
80
pthread_setschedparam(pthread_t thread, int policy,
lib/libpthread/pthread_misc.c
99
pthread_getaffinity_np(pthread_t thread, size_t size, cpuset_t *cpuset)
lib/libpthread/pthread_mutex.c
104
pthread_t _pthread_mutex_owner_np(pthread_mutex_t *);
lib/libpthread/pthread_mutex.c
196
pthread_t self;
lib/libpthread/pthread_mutex.c
219
pthread_t self;
lib/libpthread/pthread_mutex.c
249
pthread__mutex_spin(pthread_mutex_t *ptm, pthread_t owner)
lib/libpthread/pthread_mutex.c
251
pthread_t thread;
lib/libpthread/pthread_mutex.c
255
thread = (pthread_t)MUTEX_OWNER(owner);
lib/libpthread/pthread_mutex.c
274
pthread_t self;
lib/libpthread/pthread_mutex.c
393
pthread_t self;
lib/libpthread/pthread_mutex.c
436
pthread_t self;
lib/libpthread/pthread_mutex.c
471
newval = (pthread_t)MUTEX_RECURSIVE_BIT;
lib/libpthread/pthread_mutex.c
512
pthread__mutex_wakeup(pthread_t self, struct pthread__waiter *cur)
lib/libpthread/pthread_mutex.c
694
pthread__mutex_deferwake(pthread_t self, pthread_mutex_t *ptm,
lib/libpthread/pthread_mutex.c
766
pthread_t
lib/libpthread/pthread_mutex.c
770
return (pthread_t)MUTEX_OWNER(ptm->ptm_owner);
lib/libpthread/pthread_mutex.c
98
static void pthread__mutex_wakeup(pthread_t, struct pthread__waiter *);
lib/libpthread/pthread_rwlock.c
141
pthread_t thread;
lib/libpthread/pthread_rwlock.c
147
thread = (pthread_t)(owner & RW_THREAD);
lib/libpthread/pthread_rwlock.c
162
pthread_t self;
lib/libpthread/pthread_rwlock.c
281
pthread_t self;
lib/libpthread/pthread_rwlock.c
371
pthread_t self;
lib/libpthread/pthread_rwlock.c
448
pthread_t self, thread;
lib/libpthread/pthread_rwlock.c
575
pthread__rwlock_early(pthread_t self, pthread_rwlock_t *ptr,
lib/libpthread/pthread_rwlock.c
62
static void pthread__rwlock_early(pthread_t, pthread_rwlock_t *,
lib/libpthread/pthread_specific.c
60
pthread_t self;
lib/libpthread/pthread_spin.c
110
pthread_t self;
lib/libpthread/pthread_spin.c
124
pthread_t self;
lib/libpthread/pthread_spin.c
94
pthread_t self;
lib/libpthread/pthread_tsd.c
201
pthread__add_specific(pthread_t self, pthread_key_t key, const void *value)
lib/libpthread/pthread_tsd.c
326
pthread__destroy_tsd(pthread_t self)
lib/libpthread/pthread_tsd.c
391
pthread__copy_tsd(pthread_t self)
lib/libpthread/pthread_types.h
132
__pthread_volatile pthread_t ptm_owner;
lib/libpthread/pthread_types.h
231
__pthread_volatile pthread_t ptr_owner;
lib/libpthread/res_state.c
72
pthread_t self = pthread__self();
lib/libpthread/threads.h
59
typedef pthread_t thrd_t;
lib/librumphijack/hijack.c
2195
pthread_t pt;
lib/librumpuser/rumpuser_bio.c
148
pthread_t pt;
lib/librumpuser/rumpuser_pth.c
124
pthread_t *pt = ptcookie;
lib/librumpuser/rumpuser_pth.c
58
pthread_t ptid;
lib/librumpuser/rumpuser_pth.c
59
pthread_t *ptidp;
lib/librumpuser/rumpuser_sp.c
1309
pthread_t pt;
lib/librumpuser/rumpuser_sp.c
903
pthread_t pt;
lib/libukfs/ukfs.c
580
pthread_t pt;
regress/sys/kern/dislodgefd/dislodgefd.c
59
pthread_t pt;
regress/sys/kern/latency1/latency1.c
94
pthread_t pt;
regress/sys/kern/latency2/latency2.c
95
pthread_t pt;
regress/sys/kern/nameibench/nameibench.c
165
pthread_t pt;
regress/sys/kern/select/select.c
178
pthread_t pt[NTHREAD];
regress/sys/kern/softint1/softint1.c
58
pthread_t thr;
sbin/iscsid/iscsid_globals.h
371
extern pthread_t event_thread; /* event handler thread ID */
sbin/iscsid/iscsid_main.c
52
pthread_t main_thread; /* main thread handle */
sbin/iscsid/iscsid_main.c
53
pthread_t event_thread; /* event thread handle */
share/examples/rump/tipsy/tipsy.c
86
pthread_t pt;
share/examples/rump/ttyserv/ttyserv.c
204
pthread_t pt;
sys/modules/examples/readhappy_mpsafe/test_readhappy.c
72
pthread_t thr[100];
sys/rump/net/lib/libvirtif/virtif_user.c
69
pthread_t viu_rcvthr;
sys/rump/net/lib/libwg/wg_user.c
69
pthread_t wgu_rcvthr;
tests/crypto/opencrypto/h_thread.c
175
pthread_t ta, tb, tc;
tests/dev/audio/audiotest.c
178
pthread_t th;
tests/dev/audio/audiotest.c
4121
pthread_t tid;
tests/dev/md/h_mdserv.c
66
pthread_t pt;
tests/fs/common/fstest_lfs.c
58
pthread_t ta_cleanerthread;
tests/fs/common/fstest_puffs.c
221
pthread_t pt;
tests/fs/common/snapshot.c
168
pthread_t at[NACTIVITY];
tests/fs/ffs/t_fifos.c
108
pthread_t ptw1, ptw2, ptr1, ptr2;
tests/fs/nfs/nfsservice/rumpnfsd.c
67
pthread_t t;
tests/fs/nfs/t_mountd.c
89
pthread_t pt;
tests/fs/puffs/t_basic.c
162
pthread_t pt;
tests/fs/puffs/t_fuzz.c
213
pthread_t pt;
tests/fs/tmpfs/t_renamerace.c
79
pthread_t pt[2];
tests/fs/vfs/t_renamerace.c
151
pthread_t pt1[NWRK], pt2[NWRK];
tests/fs/vfs/t_renamerace.c
191
pthread_t pt1, pt2;
tests/fs/vfs/t_renamerace.c
221
pthread_t pt_rmdir, pt_rename1, pt_rename2;
tests/fs/vfs/t_rmdirrace.c
69
pthread_t th1, th2;
tests/kernel/kqueue/t_scan.c
83
pthread_t t1, t2;
tests/kernel/t_fdrestart.c
169
pthread_t t;
tests/kernel/t_filedesc.c
72
pthread_t pt;
tests/kernel/t_signal_and_fpu.c
51
static pthread_t meddler_thread;
tests/kernel/t_signal_and_fpu.c
52
static pthread_t tester_thread;
tests/kernel/t_signal_and_sp.c
492
pthread_t t;
tests/kernel/t_timeleft.c
89
pthread_t thr;
tests/lib/libc/gen/t_arc4random.c
227
pthread_t thread;
tests/lib/libc/gen/t_nice.c
163
pthread_t tid[5];
tests/lib/libc/membar/t_dekker.c
123
pthread_t t[2];
tests/lib/libc/membar/t_seqlock.c
150
pthread_t t[2];
tests/lib/libc/membar/t_spinlock.c
119
pthread_t t[2];
tests/lib/libc/net/h_nsd_recurse.c
103
pthread_t thr;
tests/lib/libc/setjmp/t_threadjmp.c
89
static pthread_t myself = NULL;
tests/lib/libc/stdlib/t_getenv_thread.c
150
pthread_t threads[THREADED_NUM_THREADS];
tests/lib/libc/stdlib/t_getenv_thread.c
175
pthread_t threads[THREADED_NUM_THREADS];
tests/lib/libc/stdlib/t_getenv_thread.c
200
pthread_t threads[THREADED_NUM_THREADS];
tests/lib/libc/stdlib/t_getenv_thread.c
225
pthread_t threads[THREADED_NUM_THREADS];
tests/lib/libc/sys/t_eventfd.c
174
pthread_t helper;
tests/lib/libc/sys/t_eventfd.c
504
pthread_t helper;
tests/lib/libc/sys/t_eventfd.c
691
pthread_t helper;
tests/lib/libc/sys/t_getpid.c
109
pthread_t tid;
tests/lib/libc/sys/t_mmap.c
446
pthread_t thread;
tests/lib/libc/sys/t_poll.c
762
pthread_t t;
tests/lib/libc/sys/t_poll.c
951
pthread_t t;
tests/lib/libc/sys/t_poll.c
970
pthread_t t;
tests/lib/libc/sys/t_ptrace_kill.c
95
pthread_t thread;
tests/lib/libc/sys/t_ptrace_lwp_wait.h
441
pthread_t t[3];
tests/lib/libc/sys/t_ptrace_lwp_wait.h
80
pthread_t t[__arraycount(tcb) - 1];
tests/lib/libc/sys/t_ptrace_threads_wait.h
282
pthread_t t;
tests/lib/libc/sys/t_ptrace_threads_wait.h
553
pthread_t t;
tests/lib/libc/sys/t_ptrace_threads_wait.h
64
pthread_t t[TRACE_THREADS_NUM];
tests/lib/libc/sys/t_ptrace_threads_wait.h
781
pthread_t bp_threads[THREAD_CONCURRENT_BREAKPOINT_NUM];
tests/lib/libc/sys/t_ptrace_threads_wait.h
782
pthread_t sig_threads[THREAD_CONCURRENT_SIGNALS_NUM];
tests/lib/libc/sys/t_ptrace_threads_wait.h
783
pthread_t wp_threads[THREAD_CONCURRENT_WATCHPOINT_NUM];
tests/lib/libc/sys/t_ptrace_x86_wait.h
1636
pthread_t t;
tests/lib/libc/sys/t_timerfd.c
476
pthread_t helper;
tests/lib/libc/sys/t_timerfd.c
723
pthread_t helper;
tests/lib/libc/tls/t_tls_dlopen.c
85
pthread_t t;
tests/lib/libc/tls/t_tls_dynamic.c
85
pthread_t t;
tests/lib/libc/tls/t_tls_static.c
75
pthread_t t;
tests/lib/libpthread/cancelpoint.h
104
pthread_t t;
tests/lib/libpthread/cancelpoint.h
82
pthread_t t;
tests/lib/libpthread/dlopen/dso/h_pthread_dlopen.c
49
int testf_dso_pthread_create(pthread_t *, const pthread_attr_t *,
tests/lib/libpthread/dlopen/dso/h_pthread_dlopen.c
77
testf_dso_pthread_create(pthread_t *thread, const pthread_attr_t *attr,
tests/lib/libpthread/dlopen/t_dso_pthread_create.c
78
pthread_t thread;
tests/lib/libpthread/dlopen/t_dso_pthread_create.c
81
int (*testf_dso_pthread_create)(pthread_t *, pthread_attr_t *,
tests/lib/libpthread/dlopen/t_main_pthread_create.c
62
pthread_t thread;
tests/lib/libpthread/dlopen/t_main_pthread_create.c
80
pthread_t thread;
tests/lib/libpthread/dlopen/t_main_pthread_create.c
83
int (*testf_dso_pthread_create)(pthread_t *, pthread_attr_t *,
tests/lib/libpthread/h_resolv.c
133
static pthread_t
tests/lib/libpthread/h_resolv.c
136
pthread_t self = pthread_self();
tests/lib/libpthread/h_resolv.c
146
pthread_t *threads;
tests/lib/libpthread/h_resolv.c
180
if ((threads = malloc(nthreads * sizeof(pthread_t))) == NULL)
tests/lib/libpthread/h_resolv.c
59
static pthread_t run(int *);
tests/lib/libpthread/h_resolv.c
97
pthread_t self = pthread_self();
tests/lib/libpthread/t_barrier.c
76
pthread_t new[COUNT];
tests/lib/libpthread/t_cancellation.c
100
pthread_t *tp = cookie;
tests/lib/libpthread/t_cancellation.c
1006
pthread_t t;
tests/lib/libpthread/t_cancellation.c
1054
pthread_t t;
tests/lib/libpthread/t_cancellation.c
1094
pthread_t t;
tests/lib/libpthread/t_cancellation.c
1143
pthread_t t;
tests/lib/libpthread/t_cancellation.c
1183
pthread_t t;
tests/lib/libpthread/t_cancellation.c
1241
pthread_t t;
tests/lib/libpthread/t_cancellation.c
1300
pthread_t t;
tests/lib/libpthread/t_cancellation.c
1348
pthread_t t;
tests/lib/libpthread/t_cancellation.c
1407
pthread_t t;
tests/lib/libpthread/t_cancellation.c
1450
pthread_t t;
tests/lib/libpthread/t_cancellation.c
586
pthread_t t;
tests/lib/libpthread/t_cond.c
138
pthread_t new;
tests/lib/libpthread/t_cond.c
200
pthread_t new;
tests/lib/libpthread/t_cond.c
260
pthread_t new;
tests/lib/libpthread/t_cond.c
345
pthread_t tid[64];
tests/lib/libpthread/t_cond.c
391
pthread_t new;
tests/lib/libpthread/t_cond.c
446
pthread_t new;
tests/lib/libpthread/t_cond.c
529
pthread_t thread;
tests/lib/libpthread/t_cond.c
77
pthread_t new;
tests/lib/libpthread/t_condwait.c
105
pthread_t child;
tests/lib/libpthread/t_detach.c
61
pthread_t t;
tests/lib/libpthread/t_equal.c
56
pthread_t t1, t2;
tests/lib/libpthread/t_fork.c
77
pthread_t p;
tests/lib/libpthread/t_fpu.c
120
pthread_t s2;
tests/lib/libpthread/t_fpu.c
135
pthread_t s5;
tests/lib/libpthread/t_join.c
63
pthread_t thread;
tests/lib/libpthread/t_join.c
72
pthread_t thread[25];
tests/lib/libpthread/t_join.c
73
pthread_t caller;
tests/lib/libpthread/t_kill.c
118
pthread_t self;
tests/lib/libpthread/t_kill.c
73
pthread_t id;
tests/lib/libpthread/t_kill.c
77
pthread_t mainthread;
tests/lib/libpthread/t_kill.c
82
pthread_t self;
tests/lib/libpthread/t_mutex.c
105
pthread_t new;
tests/lib/libpthread/t_mutex.c
156
pthread_t new;
tests/lib/libpthread/t_mutex.c
213
pthread_t new;
tests/lib/libpthread/t_mutex.c
268
pthread_t new;
tests/lib/libpthread/t_mutex.c
344
pthread_t child;
tests/lib/libpthread/t_mutex.c
505
pthread_t new;
tests/lib/libpthread/t_mutex.c
533
pthread_t new;
tests/lib/libpthread/t_name.c
54
pthread_t self = pthread_self();
tests/lib/libpthread/t_name.c
76
pthread_t thr, self = pthread_self();
tests/lib/libpthread/t_once.c
113
pthread_t threads[NTHREADS];
tests/lib/libpthread/t_once.c
170
pthread_t thread;
tests/lib/libpthread/t_once.c
249
pthread_t t;
tests/lib/libpthread/t_preempt.c
80
pthread_t new;
tests/lib/libpthread/t_rwlock.c
90
pthread_t t;
tests/lib/libpthread/t_sem.c
146
pthread_t self = pthread_self();
tests/lib/libpthread/t_sem.c
159
pthread_t threads[NTHREADS];
tests/lib/libpthread/t_sem.c
260
pthread_t t;
tests/lib/libpthread/t_sigalarm.c
91
pthread_t self = pthread_self();
tests/lib/libpthread/t_siglongjmp.c
75
pthread_t t;
tests/lib/libpthread/t_sigmask.c
180
pthread_t thread;
tests/lib/libpthread/t_sigmask.c
223
pthread_t id;
tests/lib/libpthread/t_sigmask.c
56
static volatile pthread_t thr_usr1;
tests/lib/libpthread/t_sigmask.c
57
static volatile pthread_t thr_usr2;
tests/lib/libpthread/t_sleep.c
72
pthread_t thread;
tests/lib/libpthread/t_stack.c
280
pthread_t t = pthread_self();
tests/lib/libpthread/t_stack.c
328
pthread_t t = pthread_self();
tests/lib/libpthread/t_stack.c
394
pthread_t t, t2;
tests/lib/libpthread/t_stack.c
430
pthread_t t, t2;
tests/lib/libpthread/t_swapcontext.c
93
pthread_t thread;
tests/lib/libpthread/weak/lib/h_pthread_weak.c
63
pthread_t t;
tests/lib/libpthread/weak/lib/h_pthread_weak.c
78
pthread_t t;
tests/lib/librumpclient/h_execthr.c
104
pthread_t pt;
tests/lib/semaphore/sem.c
125
pthread_t pt;
tests/lib/semaphore/sem.c
179
pthread_t pt;
tests/libexec/ld.elf_so/h_locking.c
118
pthread_t t1, t2;
tests/libexec/ld.elf_so/h_locking.c
62
pthread_t t;
tests/libexec/ld.elf_so/h_locking.c
96
pthread_t t1, t2;
tests/libexec/ld.elf_so/h_thread_local_dtor.c
61
pthread_t thread;
tests/libexec/ld.elf_so/t_dlclose_thread.c
70
pthread_t t[2*MAXNDSOS];
tests/modules/t_kcov.c
209
pthread_t thread;
tests/modules/t_kcov.c
420
pthread_t thread;
tests/modules/t_kcov.c
458
pthread_t thread;
tests/modules/t_kcov.c
515
pthread_t thread[32];
tests/rump/rumpkern/h_client/h_reconcli.c
84
pthread_t pt, w1, w2, w3, w4;
tests/rump/rumpkern/h_client/h_stresscli.c
130
pthread_t pt[NTHR-1];
usr.sbin/mountd/mountd.c
408
pthread_t ptdummy;
usr.sbin/nfsd/nfsd.c
428
pthread_t *workers;
usr.sbin/puffs/rump_lfs/rump_lfs.c
71
pthread_t cleanerthread;
usr.sbin/tprof/tprof.c
394
pthread_t pt;