Searched refs:thr (Results 1 – 12 of 12) sorted by relevance
/nptl/ |
A D | tst-minstack-cancel.c | 41 pthread_t thr = xpthread_create (&attr, threadfunc, NULL); in do_test() local 42 xpthread_cancel (thr); in do_test() 43 TEST_VERIFY (xpthread_join (thr) == PTHREAD_CANCELED); in do_test()
|
A D | tst-minstack-exit.c | 43 pthread_t thr = xpthread_create (&attr, threadfunc, NULL); in do_test() local 44 TEST_VERIFY (xpthread_join (thr) == threadfunc); in do_test()
|
A D | tst-thread-exit-clobber.cc | 220 pthread_t thr in do_test() local 223 TEST_VERIFY (xpthread_join (thr) == NULL); in do_test() 226 thr = xpthread_create (NULL, &threadfunc<double, false>, in do_test() 228 TEST_VERIFY (xpthread_join (thr) == NULL); in do_test() 231 thr = xpthread_create (NULL, &threadfunc<unsigned int, true>, in do_test() 233 TEST_VERIFY (xpthread_join (thr) == NULL); in do_test() 236 thr = xpthread_create (NULL, &threadfunc<double, true>, in do_test() 238 TEST_VERIFY (xpthread_join (thr) == NULL); in do_test()
|
A D | tst-rwlock15.c | 93 pthread_t thr; in do_test() local 94 if (pthread_create (&thr, NULL, reader, NULL) != 0) in do_test() 105 if (pthread_join (thr, NULL) != 0) in do_test()
|
A D | tst-rwlock20.c | 85 pthread_t thr[THREADS]; in do_test() local 101 thr[n] = xpthread_create (NULL, tf, (void *) (uintptr_t) n); in do_test() 111 xpthread_join (thr[n]); in do_test()
|
A D | tst-thread-affinity-pthread2.c | 60 pthread_t thr; in run_affinity_access_thread() local 61 int ret = pthread_create (&thr, NULL, affinity_access_thread, &task); in run_affinity_access_thread() 68 ret = pthread_join (thr, NULL); in run_affinity_access_thread()
|
A D | tst-pthread-attr-affinity-fail.c | 52 pthread_t thr; in do_test() local 53 TEST_COMPARE (pthread_create (&thr, &attr, thr_func, NULL), EINVAL); in do_test()
|
A D | tst-minstack-throw.cc | 81 pthread_t thr = xpthread_create (&attr, threadfunc, NULL); in do_test() local 82 TEST_VERIFY (xpthread_join (thr) == threadfunc); in do_test()
|
A D | tst-thread_local1.cc | 152 pthread_t thr; in do_test() local 153 int ret = pthread_create (&thr, nullptr, func, nullptr); in do_test() 161 ret = pthread_join (thr, nullptr); in do_test() 173 std::thread thr{[func] {func (nullptr);}}; in do_test() local 174 thr.join (); in do_test()
|
A D | tst-pthread-attr-sigmask.c | 101 thrd_t thr; in check_c11_thread() local 102 TEST_VERIFY_EXIT (thrd_create (&thr, check_sigmask_thread_function_c11, in check_c11_thread() 104 TEST_VERIFY_EXIT (thrd_join (thr, NULL) == thrd_success); in check_c11_thread()
|
A D | tst-pthread-gdb-attach.c | 150 pthread_t thr = xpthread_create (NULL, subprocess_thread, NULL); in in_subprocess() local 151 TEST_VERIFY (xpthread_join (thr) == NULL); in in_subprocess()
|
A D | tst-default-attr.c | 49 thr (void *unused __attribute__ ((unused))) in thr() function 101 RETURN_IF_FAIL (pthread_create, &t, NULL, thr, NULL); in run_threads()
|
Completed in 13 milliseconds