tests/lib/libpthread/t_barrier.c
101
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_barrier.c
59
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_barrier.c
63
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_barrier.c
79
PTHREAD_REQUIRE(pthread_mutex_init(&mutex, NULL));
tests/lib/libpthread/t_barrier.c
80
PTHREAD_REQUIRE(pthread_barrier_init(&barrier, NULL, COUNT));
tests/lib/libpthread/t_barrier.c
83
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_barrier.c
85
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_barrier.c
86
PTHREAD_REQUIRE(pthread_create(&new[i], NULL, threadfunc,
tests/lib/libpthread/t_barrier.c
92
PTHREAD_REQUIRE(pthread_join(new[i], &joinval));
tests/lib/libpthread/t_barrier.c
93
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_barrier.c
95
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_barrier.c
99
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_cond.c
102
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_cond.c
105
PTHREAD_REQUIRE(pthread_join(new, &joinval));
tests/lib/libpthread/t_cond.c
118
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_cond.c
124
PTHREAD_REQUIRE(pthread_cond_signal(&cond));
tests/lib/libpthread/t_cond.c
125
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_cond.c
144
PTHREAD_REQUIRE(pthread_mutex_init(&mutex, NULL));
tests/lib/libpthread/t_cond.c
145
PTHREAD_REQUIRE(pthread_cond_init(&cond, NULL));
tests/lib/libpthread/t_cond.c
147
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_cond.c
151
PTHREAD_REQUIRE(pthread_create(&new, NULL,
tests/lib/libpthread/t_cond.c
157
PTHREAD_REQUIRE(pthread_cond_wait(&cond, &mutex));
tests/lib/libpthread/t_cond.c
163
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_cond.c
166
PTHREAD_REQUIRE(pthread_join(new, &joinval));
tests/lib/libpthread/t_cond.c
179
PTHREAD_REQUIRE(pthread_mutex_lock(&static_mutex));
tests/lib/libpthread/t_cond.c
185
PTHREAD_REQUIRE(pthread_cond_signal(&static_cond));
tests/lib/libpthread/t_cond.c
186
PTHREAD_REQUIRE(pthread_mutex_unlock(&static_mutex));
tests/lib/libpthread/t_cond.c
206
PTHREAD_REQUIRE(pthread_mutex_lock(&static_mutex));
tests/lib/libpthread/t_cond.c
210
PTHREAD_REQUIRE(pthread_create(&new, NULL,
tests/lib/libpthread/t_cond.c
216
PTHREAD_REQUIRE(pthread_cond_wait(&static_cond, &static_mutex));
tests/lib/libpthread/t_cond.c
222
PTHREAD_REQUIRE(pthread_mutex_unlock(&static_mutex));
tests/lib/libpthread/t_cond.c
225
PTHREAD_REQUIRE(pthread_join(new, &joinval));
tests/lib/libpthread/t_cond.c
234
PTHREAD_REQUIRE(pthread_mutex_lock(&static_mutex));
tests/lib/libpthread/t_cond.c
241
PTHREAD_REQUIRE(pthread_cond_signal(&static_cond));
tests/lib/libpthread/t_cond.c
243
PTHREAD_REQUIRE(pthread_cond_wait(&static_cond,
tests/lib/libpthread/t_cond.c
248
PTHREAD_REQUIRE(pthread_mutex_unlock(&static_mutex));
tests/lib/libpthread/t_cond.c
266
PTHREAD_REQUIRE(pthread_mutex_lock(&static_mutex));
tests/lib/libpthread/t_cond.c
271
PTHREAD_REQUIRE(pthread_create(&new, NULL, signal_wait_race_threadfunc,
tests/lib/libpthread/t_cond.c
280
PTHREAD_REQUIRE(pthread_cond_signal(&static_cond));
tests/lib/libpthread/t_cond.c
282
PTHREAD_REQUIRE(pthread_cond_wait(&static_cond,
tests/lib/libpthread/t_cond.c
289
PTHREAD_REQUIRE(pthread_mutex_unlock(&static_mutex));
tests/lib/libpthread/t_cond.c
290
PTHREAD_REQUIRE(pthread_cond_signal(&static_cond));
tests/lib/libpthread/t_cond.c
293
PTHREAD_REQUIRE(pthread_join(new, &joinval));
tests/lib/libpthread/t_cond.c
325
PTHREAD_REQUIRE(pthread_mutex_lock(&static_mutex));
tests/lib/libpthread/t_cond.c
333
PTHREAD_REQUIRE(pthread_mutex_unlock(&static_mutex));
tests/lib/libpthread/t_cond.c
350
PTHREAD_REQUIRE(pthread_create(&tid[i], NULL,
tests/lib/libpthread/t_cond.c
356
PTHREAD_REQUIRE(pthread_join(tid[i], NULL));
tests/lib/libpthread/t_cond.c
365
PTHREAD_REQUIRE(pthread_mutex_lock(&static_mutex));
tests/lib/libpthread/t_cond.c
370
PTHREAD_REQUIRE(pthread_cond_signal(&static_cond));
tests/lib/libpthread/t_cond.c
372
PTHREAD_REQUIRE(pthread_cond_wait(&static_cond,
tests/lib/libpthread/t_cond.c
377
PTHREAD_REQUIRE(pthread_mutex_unlock(&static_mutex));
tests/lib/libpthread/t_cond.c
397
PTHREAD_REQUIRE(pthread_mutex_lock(&static_mutex));
tests/lib/libpthread/t_cond.c
402
PTHREAD_REQUIRE(pthread_create(&new, NULL, broadcast_threadfunc,
tests/lib/libpthread/t_cond.c
410
PTHREAD_REQUIRE(pthread_cond_broadcast(&static_cond));
tests/lib/libpthread/t_cond.c
412
PTHREAD_REQUIRE(pthread_cond_wait(&static_cond,
tests/lib/libpthread/t_cond.c
419
PTHREAD_REQUIRE(pthread_mutex_unlock(&static_mutex));
tests/lib/libpthread/t_cond.c
420
PTHREAD_REQUIRE(pthread_cond_signal(&static_cond));
tests/lib/libpthread/t_cond.c
423
PTHREAD_REQUIRE(pthread_join(new, &joinval));
tests/lib/libpthread/t_cond.c
452
PTHREAD_REQUIRE(pthread_mutex_lock(&static_mutex));
tests/lib/libpthread/t_cond.c
472
PTHREAD_REQUIRE(pthread_create(&new, NULL, bogus_timedwaits_threadfunc,
tests/lib/libpthread/t_cond.c
474
PTHREAD_REQUIRE(pthread_join(new, NULL));
tests/lib/libpthread/t_cond.c
493
PTHREAD_REQUIRE(pthread_mutex_unlock(&static_mutex));
tests/lib/libpthread/t_cond.c
505
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_cond.c
511
PTHREAD_REQUIRE(pthread_cond_broadcast(&cond));
tests/lib/libpthread/t_cond.c
512
PTHREAD_REQUIRE(pthread_cond_wait(&cond, &mutex));
tests/lib/libpthread/t_cond.c
516
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_cond.c
531
PTHREAD_REQUIRE(pthread_mutex_init(&mutex, NULL));
tests/lib/libpthread/t_cond.c
532
PTHREAD_REQUIRE(pthread_cond_init(&cond, NULL));
tests/lib/libpthread/t_cond.c
533
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_cond.c
534
PTHREAD_REQUIRE(pthread_create(&thread, NULL,
tests/lib/libpthread/t_cond.c
538
PTHREAD_REQUIRE(pthread_cond_wait(&cond, &mutex));
tests/lib/libpthread/t_cond.c
541
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_cond.c
542
PTHREAD_REQUIRE(pthread_cancel(thread));
tests/lib/libpthread/t_cond.c
544
PTHREAD_REQUIRE(pthread_join(thread, NULL));
tests/lib/libpthread/t_cond.c
545
PTHREAD_REQUIRE(pthread_cond_destroy(&cond));
tests/lib/libpthread/t_cond.c
547
PTHREAD_REQUIRE(pthread_mutex_destroy(&mutex));
tests/lib/libpthread/t_cond.c
560
PTHREAD_REQUIRE(pthread_condattr_init(&condattr));
tests/lib/libpthread/t_cond.c
561
PTHREAD_REQUIRE(pthread_condattr_setclock(&condattr, CLOCK_REALTIME));
tests/lib/libpthread/t_cond.c
562
PTHREAD_REQUIRE(pthread_condattr_getclock(&condattr, &clockid));
tests/lib/libpthread/t_cond.c
565
PTHREAD_REQUIRE(pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC));
tests/lib/libpthread/t_cond.c
566
PTHREAD_REQUIRE(pthread_condattr_getclock(&condattr, &clockid));
tests/lib/libpthread/t_cond.c
59
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_cond.c
64
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_cond.c
65
PTHREAD_REQUIRE(pthread_cond_signal(&cond));
tests/lib/libpthread/t_cond.c
83
PTHREAD_REQUIRE(pthread_mutex_init(&mutex, NULL));
tests/lib/libpthread/t_cond.c
84
PTHREAD_REQUIRE(pthread_cond_init(&cond, NULL));
tests/lib/libpthread/t_cond.c
86
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_cond.c
90
PTHREAD_REQUIRE(pthread_create(&new, NULL, signal_delay_wait_threadfunc,
tests/lib/libpthread/t_cond.c
96
PTHREAD_REQUIRE(pthread_cond_wait(&cond, &mutex));
tests/lib/libpthread/t_condwait.c
62
PTHREAD_REQUIRE(pthread_condattr_init(&attr));
tests/lib/libpthread/t_condwait.c
63
PTHREAD_REQUIRE(pthread_condattr_setclock(&attr, clck));
tests/lib/libpthread/t_detach.c
67
PTHREAD_REQUIRE(pthread_attr_init(&attr));
tests/lib/libpthread/t_detach.c
68
PTHREAD_REQUIRE(pthread_attr_setdetachstate(&attr, state));
tests/lib/libpthread/t_detach.c
69
PTHREAD_REQUIRE(pthread_create(&t, &attr, func, NULL));
tests/lib/libpthread/t_detach.c
75
PTHREAD_REQUIRE(pthread_detach(t));
tests/lib/libpthread/t_fork.c
82
PTHREAD_REQUIRE(pthread_create(&p, NULL, print_pid, NULL));
tests/lib/libpthread/t_fork.c
90
PTHREAD_REQUIRE(pthread_join(p, NULL));
tests/lib/libpthread/t_fpu.c
105
PTHREAD_REQUIRE(pthread_mutex_lock(&recursion_depth_lock));
tests/lib/libpthread/t_fpu.c
107
PTHREAD_REQUIRE(pthread_mutex_unlock(&recursion_depth_lock));
tests/lib/libpthread/t_fpu.c
121
PTHREAD_REQUIRE(pthread_create(&s2, 0, bar, 0));
tests/lib/libpthread/t_fpu.c
139
PTHREAD_REQUIRE(pthread_mutex_init(&recursion_depth_lock, 0));
tests/lib/libpthread/t_fpu.c
141
PTHREAD_REQUIRE(pthread_create(&s5, 0, stir, stirseed));
tests/lib/libpthread/t_join.c
116
PTHREAD_REQUIRE(pthread_join(thread[i], &val));
tests/lib/libpthread/t_join.c
65
PTHREAD_REQUIRE(pthread_create(&thread, NULL, threadfunc1, NULL));
tests/lib/libpthread/t_join.c
66
PTHREAD_REQUIRE(pthread_join(thread, NULL));
tests/lib/libpthread/t_kill.c
125
PTHREAD_REQUIRE(pthread_create(&th[i].id, NULL, f, &th[i]));
tests/lib/libpthread/t_kill.c
134
PTHREAD_REQUIRE(pthread_kill(th[i].id, SIGUSR1));
tests/lib/libpthread/t_kill.c
138
PTHREAD_REQUIRE(pthread_join(th[i].id, NULL));
tests/lib/libpthread/t_mutex.c
110
PTHREAD_REQUIRE(pthread_mutex_init(&mutex, NULL));
tests/lib/libpthread/t_mutex.c
112
PTHREAD_REQUIRE(mutex_lock(&mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
113
PTHREAD_REQUIRE(pthread_create(&new, NULL, mutex1_threadfunc, &x));
tests/lib/libpthread/t_mutex.c
119
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_mutex.c
121
PTHREAD_REQUIRE(pthread_join(new, &joinval));
tests/lib/libpthread/t_mutex.c
123
PTHREAD_REQUIRE(mutex_lock(&mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
128
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_mutex.c
139
PTHREAD_REQUIRE(mutex_lock(&mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
141
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_mutex.c
161
PTHREAD_REQUIRE(pthread_mutex_init(&mutex, NULL));
tests/lib/libpthread/t_mutex.c
166
PTHREAD_REQUIRE(mutex_lock(&mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
167
PTHREAD_REQUIRE(pthread_create(&new, NULL, mutex2_threadfunc, &count2));
tests/lib/libpthread/t_mutex.c
171
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_mutex.c
174
PTHREAD_REQUIRE(mutex_lock(&mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
176
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_mutex.c
179
PTHREAD_REQUIRE(pthread_join(new, &joinval));
tests/lib/libpthread/t_mutex.c
181
PTHREAD_REQUIRE(mutex_lock(&mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
195
PTHREAD_REQUIRE(mutex_lock(&static_mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
197
PTHREAD_REQUIRE(pthread_mutex_unlock(&static_mutex));
tests/lib/libpthread/t_mutex.c
221
PTHREAD_REQUIRE(mutex_lock(&static_mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
222
PTHREAD_REQUIRE(pthread_create(&new, NULL, mutex3_threadfunc, &count2));
tests/lib/libpthread/t_mutex.c
226
PTHREAD_REQUIRE(pthread_mutex_unlock(&static_mutex));
tests/lib/libpthread/t_mutex.c
229
PTHREAD_REQUIRE(mutex_lock(&static_mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
231
PTHREAD_REQUIRE(pthread_mutex_unlock(&static_mutex));
tests/lib/libpthread/t_mutex.c
234
PTHREAD_REQUIRE(pthread_join(new, &joinval));
tests/lib/libpthread/t_mutex.c
236
PTHREAD_REQUIRE(mutex_lock(&static_mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
251
PTHREAD_REQUIRE(mutex_lock(&mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
255
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_mutex.c
274
PTHREAD_REQUIRE(pthread_mutexattr_init(&mattr));
tests/lib/libpthread/t_mutex.c
275
PTHREAD_REQUIRE(pthread_mutexattr_settype(&mattr, PTHREAD_MUTEX_RECURSIVE));
tests/lib/libpthread/t_mutex.c
277
PTHREAD_REQUIRE(pthread_mutex_init(&mutex, &mattr));
tests/lib/libpthread/t_mutex.c
279
PTHREAD_REQUIRE(pthread_mutexattr_destroy(&mattr));
tests/lib/libpthread/t_mutex.c
282
PTHREAD_REQUIRE(mutex_lock(&mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
283
PTHREAD_REQUIRE(pthread_create(&new, NULL, mutex4_threadfunc, &x));
tests/lib/libpthread/t_mutex.c
286
PTHREAD_REQUIRE(mutex_lock(&mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
290
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_mutex.c
297
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_mutex.c
300
PTHREAD_REQUIRE(pthread_join(new, &joinval));
tests/lib/libpthread/t_mutex.c
302
PTHREAD_REQUIRE(mutex_lock(&mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
307
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_mutex.c
323
PTHREAD_REQUIRE(mutex_lock(&mutex5, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
327
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex5));
tests/lib/libpthread/t_mutex.c
359
PTHREAD_REQUIRE(pthread_mutexattr_init(&attr5));
tests/lib/libpthread/t_mutex.c
360
PTHREAD_REQUIRE(pthread_mutexattr_setprotocol(&attr5,
tests/lib/libpthread/t_mutex.c
362
PTHREAD_REQUIRE(pthread_mutexattr_setprioceiling(&attr5,
tests/lib/libpthread/t_mutex.c
365
PTHREAD_REQUIRE(pthread_mutex_init(&mutex5, &attr5));
tests/lib/libpthread/t_mutex.c
366
PTHREAD_REQUIRE(mutex_lock(&mutex5, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
368
PTHREAD_REQUIRE(pthread_create(&child, NULL, child_func, NULL));
tests/lib/libpthread/t_mutex.c
372
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex5));
tests/lib/libpthread/t_mutex.c
373
PTHREAD_REQUIRE(pthread_join(child, NULL));
tests/lib/libpthread/t_mutex.c
387
PTHREAD_REQUIRE(pthread_mutexattr_init(&mattr));
tests/lib/libpthread/t_mutex.c
390
PTHREAD_REQUIRE(pthread_mutexattr_setprotocol(&mattr, target));
tests/lib/libpthread/t_mutex.c
391
PTHREAD_REQUIRE(pthread_mutexattr_getprotocol(&mattr, &protocol));
tests/lib/libpthread/t_mutex.c
402
PTHREAD_REQUIRE(pthread_mutexattr_setprotocol(&mattr, target));
tests/lib/libpthread/t_mutex.c
403
PTHREAD_REQUIRE(pthread_mutexattr_getprotocol(&mattr, &protocol));
tests/lib/libpthread/t_mutex.c
417
PTHREAD_REQUIRE(pthread_mutexattr_init(&mattr));
tests/lib/libpthread/t_mutex.c
424
PTHREAD_REQUIRE(pthread_mutexattr_getprotocol(&mattr,
tests/lib/libpthread/t_mutex.c
428
PTHREAD_REQUIRE(pthread_mutexattr_setprioceiling(&mattr, i));
tests/lib/libpthread/t_mutex.c
429
PTHREAD_REQUIRE(pthread_mutexattr_getprioceiling(&mattr,
tests/lib/libpthread/t_mutex.c
448
PTHREAD_REQUIRE(pthread_mutex_init(&mutex, NULL));
tests/lib/libpthread/t_mutex.c
451
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_mutex.c
458
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_mutex.c
473
PTHREAD_REQUIRE(pthread_mutex_init(&mutex, NULL));
tests/lib/libpthread/t_mutex.c
476
PTHREAD_REQUIRE(mutex_lock(&mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
483
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_mutex.c
509
PTHREAD_REQUIRE(pthread_mutex_init(&mutex, NULL));
tests/lib/libpthread/t_mutex.c
512
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_mutex.c
515
PTHREAD_REQUIRE(pthread_create(&new, NULL, timedmtx_thrdfunc, NULL));
tests/lib/libpthread/t_mutex.c
518
PTHREAD_REQUIRE(pthread_join(new, NULL));
tests/lib/libpthread/t_mutex.c
521
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_mutex.c
537
PTHREAD_REQUIRE(pthread_mutex_init(&mutex, NULL));
tests/lib/libpthread/t_mutex.c
540
PTHREAD_REQUIRE(mutex_lock(&mutex, &ts_lengthy));
tests/lib/libpthread/t_mutex.c
543
PTHREAD_REQUIRE(pthread_create(&new, NULL, timedmtx_thrdfunc, NULL));
tests/lib/libpthread/t_mutex.c
546
PTHREAD_REQUIRE(pthread_join(new, NULL));
tests/lib/libpthread/t_mutex.c
549
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_name.c
57
PTHREAD_REQUIRE(pthread_getname_np(self, retname, sizeof(retname)));
tests/lib/libpthread/t_name.c
60
PTHREAD_REQUIRE(pthread_setname_np(self, non_const_name, NULL));
tests/lib/libpthread/t_name.c
62
PTHREAD_REQUIRE(pthread_getname_np(self, retname, sizeof(retname)));
tests/lib/libpthread/t_name.c
80
PTHREAD_REQUIRE(pthread_attr_init(&attr));
tests/lib/libpthread/t_name.c
81
PTHREAD_REQUIRE(pthread_attr_getname_np(&attr, retname,
tests/lib/libpthread/t_name.c
85
PTHREAD_REQUIRE(pthread_attr_setname_np(&attr, "%s",
tests/lib/libpthread/t_name.c
89
PTHREAD_REQUIRE(pthread_getname_np(self, retname, sizeof(retname)));
tests/lib/libpthread/t_name.c
92
PTHREAD_REQUIRE(pthread_create(&thr, &attr, threadfunc, NULL));
tests/lib/libpthread/t_name.c
93
PTHREAD_REQUIRE(pthread_join(thr, NULL));
tests/lib/libpthread/t_once.c
121
PTHREAD_REQUIRE(pthread_create(&threads[i], NULL, once2_threadfunc, &id[i]));
tests/lib/libpthread/t_once.c
125
PTHREAD_REQUIRE(pthread_join(threads[i], NULL));
tests/lib/libpthread/t_once.c
136
PTHREAD_REQUIRE(pthread_mutex_unlock(mu));
tests/lib/libpthread/t_once.c
148
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_once.c
150
PTHREAD_REQUIRE(pthread_once(&once, once3_ofunc));
tests/lib/libpthread/t_once.c
185
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_once.c
186
PTHREAD_REQUIRE(pthread_create(&thread, NULL, once3_threadfunc, NULL));
tests/lib/libpthread/t_once.c
187
PTHREAD_REQUIRE(pthread_cancel(thread));
tests/lib/libpthread/t_once.c
188
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_once.c
189
PTHREAD_REQUIRE(pthread_join(thread, NULL));
tests/lib/libpthread/t_once.c
191
PTHREAD_REQUIRE(pthread_once(&once, ofunc));
tests/lib/libpthread/t_once.c
77
PTHREAD_REQUIRE(pthread_once(&once, ofunc));
tests/lib/libpthread/t_once.c
78
PTHREAD_REQUIRE(pthread_once(&once, ofunc));
tests/lib/libpthread/t_once.c
97
PTHREAD_REQUIRE(pthread_once(&once, once2_ofunc));
tests/lib/libpthread/t_preempt.c
102
PTHREAD_REQUIRE(pthread_create(&new, NULL, threadfunc, NULL));
tests/lib/libpthread/t_preempt.c
106
PTHREAD_REQUIRE(pthread_cond_wait(&cond, &mutex));
tests/lib/libpthread/t_preempt.c
111
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_preempt.c
118
PTHREAD_REQUIRE(pthread_join(new, &joinval));
tests/lib/libpthread/t_preempt.c
59
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_preempt.c
63
PTHREAD_REQUIRE(pthread_mutex_unlock(&mutex));
tests/lib/libpthread/t_preempt.c
64
PTHREAD_REQUIRE(pthread_cond_signal(&cond));
tests/lib/libpthread/t_preempt.c
94
PTHREAD_REQUIRE(pthread_cond_init(&cond, NULL));
tests/lib/libpthread/t_preempt.c
95
PTHREAD_REQUIRE(pthread_mutex_init(&mutex, NULL));
tests/lib/libpthread/t_preempt.c
97
PTHREAD_REQUIRE(pthread_mutex_lock(&mutex));
tests/lib/libpthread/t_rwlock.c
107
PTHREAD_REQUIRE(pthread_rwlock_unlock(&lk));
tests/lib/libpthread/t_rwlock.c
112
PTHREAD_REQUIRE(pthread_rwlock_timedwrlock(&lk, &to));
tests/lib/libpthread/t_rwlock.c
130
PTHREAD_REQUIRE(pthread_rwlock_rdlock(&static_rwlock));
tests/lib/libpthread/t_rwlock.c
131
PTHREAD_REQUIRE(pthread_rwlock_unlock(&static_rwlock));
tests/lib/libpthread/t_rwlock.c
132
PTHREAD_REQUIRE(pthread_rwlock_destroy(&static_rwlock));
tests/lib/libpthread/t_rwlock.c
92
PTHREAD_REQUIRE(pthread_create(&t, NULL, do_nothing, NULL));
tests/lib/libpthread/t_rwlock.c
93
PTHREAD_REQUIRE(pthread_rwlock_init(&lk, NULL));
tests/lib/libpthread/t_rwlock.c
94
PTHREAD_REQUIRE(pthread_rwlock_rdlock(&lk));
tests/lib/libpthread/t_rwlock.c
95
PTHREAD_REQUIRE(pthread_rwlock_rdlock(&lk));
tests/lib/libpthread/t_rwlock.c
96
PTHREAD_REQUIRE(pthread_rwlock_unlock(&lk));
tests/lib/libpthread/t_sem.c
190
PTHREAD_REQUIRE(pthread_create(&threads[i], NULL,
tests/lib/libpthread/t_sem.c
201
PTHREAD_REQUIRE(pthread_join(threads[i], NULL));
tests/lib/libpthread/t_sem.c
268
PTHREAD_REQUIRE(pthread_create(&t, NULL, threadfunc, NULL));
tests/lib/libpthread/t_sem.c
269
PTHREAD_REQUIRE(pthread_join(t, NULL));
tests/lib/libpthread/t_sigalarm.c
93
PTHREAD_REQUIRE(pthread_create(&self, NULL, setup, NULL));
tests/lib/libpthread/t_siglongjmp.c
83
PTHREAD_REQUIRE(pthread_create(&t, NULL, thread, NULL));
tests/lib/libpthread/t_siglongjmp.c
87
PTHREAD_REQUIRE(pthread_sigmask(SIG_SETMASK, &nset, NULL));
tests/lib/libpthread/t_siglongjmp.c
97
PTHREAD_REQUIRE(pthread_sigmask(0, NULL, &nset));
tests/lib/libpthread/t_sigmask.c
194
PTHREAD_REQUIRE(pthread_create(&thread, NULL,
tests/lib/libpthread/t_sigmask.c
196
PTHREAD_REQUIRE(pthread_join(thread, NULL));
tests/lib/libpthread/t_sigmask.c
235
PTHREAD_REQUIRE(pthread_sigmask(SIG_SETMASK, &act.sa_mask, NULL));
tests/lib/libpthread/t_sigmask.c
237
PTHREAD_REQUIRE(pthread_create(&id, NULL, incorrect_mask_bug_sleeper,
tests/lib/libpthread/t_sigmask.c
242
PTHREAD_REQUIRE(pthread_sigmask(SIG_SETMASK, &act.sa_mask, NULL));
tests/lib/libpthread/t_sleep.c
84
PTHREAD_REQUIRE(pthread_create(&thread, NULL, threadfunc, NULL));
tests/lib/libpthread/t_sleep.c
89
PTHREAD_REQUIRE(pthread_sigmask(SIG_BLOCK, &mtsm, 0));
tests/lib/libpthread/t_sleep.c
96
PTHREAD_REQUIRE(pthread_join(thread, NULL));
tests/lib/libpthread/t_swapcontext.c
102
PTHREAD_REQUIRE(pthread_create(&thread, NULL, threadfunc, NULL));
tests/lib/libpthread/t_swapcontext.c
103
PTHREAD_REQUIRE(pthread_join(thread, NULL));