/src/lib/libpthread/ |
pthread_int.h | 92 pthread_t pt_self; /* Must be first. */ 196 void pthread__unpark_all(pthread_queue_t *, pthread_t, pthread_mutex_t *) 198 void pthread__unpark(pthread_queue_t *, pthread_t, pthread_mutex_t *) 200 int pthread__park(pthread_t, pthread_mutex_t *, pthread_queue_t *, 208 static inline void pthread__spinlock(pthread_t, pthread_spin_t *) 211 pthread__spinlock(pthread_t self, pthread_spin_t *lock) 218 static inline int pthread__spintrylock(pthread_t, pthread_spin_t *) 221 pthread__spintrylock(pthread_t self, pthread_spin_t *lock) 226 static inline void pthread__spinunlock(pthread_t, pthread_spin_t *) 229 pthread__spinunlock(pthread_t self, pthread_spin_t *lock [all...] |
pthread.h | 48 int pthread_create(pthread_t * __restrict, 52 int pthread_join(pthread_t, void **); 53 int pthread_equal(pthread_t, pthread_t); 54 pthread_t pthread_self(void); 55 int pthread_detach(pthread_t); 62 int pthread_attr_get_np(pthread_t, pthread_attr_t *); 154 int pthread_cancel(pthread_t); 159 int pthread_getname_np(pthread_t, char *, size_t); 160 int pthread_setname_np(pthread_t, const char *, void *) [all...] |
pthread_cancelstub.c | 164 pthread_t self; 178 pthread_t self; 193 pthread_t self; 208 pthread_t self; 222 pthread_t self; 236 pthread_t self; 250 pthread_t self; 267 pthread_t self; 281 pthread_t self; 295 pthread_t self [all...] |
pthread_misc.c | 64 pthread_getschedparam(pthread_t thread, int *policy, struct sched_param *param) 80 pthread_setschedparam(pthread_t thread, int policy, 99 pthread_getaffinity_np(pthread_t thread, size_t size, cpuset_t *cpuset) 115 pthread_setaffinity_np(pthread_t thread, size_t size, cpuset_t *cpuset) 131 pthread_setschedprio(pthread_t thread, int prio) 149 pthread_kill(pthread_t thread, int sig)
|
pthread_getcpuclockid.c | 47 pthread_getcpuclockid(pthread_t thread, clockid_t *clock_id)
|
pthread_spin.c | 94 pthread_t self; 110 pthread_t self; 124 pthread_t self;
|
pthread.c | 99 static void pthread__initthread(pthread_t); 100 static void pthread__scrubthread(pthread_t, char *, int); 101 static void pthread__initmain(pthread_t *); 102 static void pthread__reap(pthread_t); 209 pthread_t first; 308 pthread__initthread(pthread_t t) 323 pthread__scrubthread(pthread_t t, char *name, int flags) 336 pthread__getstack(pthread_t newthread, const pthread_attr_t *attr) 406 pthread_create(pthread_t *thread, const pthread_attr_t *attr, 409 pthread_t newthread [all...] |
/src/regress/sys/kern/softint1/ |
softint1.c | 58 pthread_t thr;
|
/src/tests/lib/libpthread/ |
t_kill.c | 73 pthread_t id; 77 pthread_t mainthread; 82 pthread_t self; 118 pthread_t self;
|
h_resolv.c | 59 static pthread_t run(int *); 97 pthread_t self = pthread_self(); 133 static pthread_t 136 pthread_t self = pthread_self(); 146 pthread_t *threads; 180 if ((threads = malloc(nthreads * sizeof(pthread_t))) == NULL)
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/benchmarks/ |
start_many_threads.cc | 38 pthread_t *t = new pthread_t[n_threads];
|
vts_many_threads_bench.cc | 93 pthread_t *t = new pthread_t[n_threads]; 95 pthread_t *g_t = new pthread_t[n_garbage_threads];
|
mini_bench_local.cc | 39 pthread_t *t = new pthread_t[n_threads];
|
mini_bench_shared.cc | 41 pthread_t *t = new pthread_t[n_threads];
|
/src/tests/lib/libpthread/dlopen/dso/ |
h_pthread_dlopen.c | 49 int testf_dso_pthread_create(pthread_t *, const pthread_attr_t *, 77 testf_dso_pthread_create(pthread_t *thread, const pthread_attr_t *attr,
|
/src/tests/usr.bin/c++/ |
t_tsan_signal_errno.sh | 67 pthread_t mainth; 75 pthread_t th; 95 pthread_t mainth; 103 pthread_t th; 129 pthread_t mainth; 137 pthread_t th; 163 pthread_t mainth; 171 pthread_t th;
|
/src/tests/usr.bin/cc/ |
t_tsan_signal_errno.sh | 67 pthread_t mainth; 75 pthread_t th; 95 pthread_t mainth; 103 pthread_t th; 129 pthread_t mainth; 137 pthread_t th; 163 pthread_t mainth; 171 pthread_t th;
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_stoptheworld_testlib.cc | 48 pthread_t thread_id;
|
sanitizer_pthread_wrappers.h | 29 typedef HANDLE pthread_t; typedef in typeref:typename:HANDLE 44 inline void PTHREAD_CREATE(pthread_t *thread, void *attr, 56 inline void PTHREAD_JOIN(pthread_t thread, void **value_ptr) {
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/ |
tsan_posix_util.h | 46 extern "C" int __interceptor_pthread_create(pthread_t *thread, 50 extern "C" int __interceptor_pthread_join(pthread_t thread, void **value_ptr); 51 extern "C" int __interceptor_pthread_detach(pthread_t thread);
|
/src/tests/lib/libpthread/dlopen/ |
t_main_pthread_create.c | 62 pthread_t thread; 80 pthread_t thread; 83 int (*testf_dso_pthread_create)(pthread_t *, pthread_attr_t *,
|
t_dso_pthread_create.c | 64 pthread_t thread; 67 int (*testf_dso_pthread_create)(pthread_t *, pthread_attr_t *,
|
/src/tests/libexec/ld.elf_so/ |
h_locking.c | 62 pthread_t t; 96 pthread_t t1, t2; 118 pthread_t t1, t2;
|
/src/lib/libisns/ |
isns_config.h | 63 pthread_t *control_thread_p;
|
/src/sys/modules/examples/readhappy_mpsafe/ |
test_readhappy.c | 72 pthread_t thr[100];
|