/kernel/liteos_m/testsuites/unittest/xts/process/ |
H A D | pthread_basic_api_test.c | 64 ret = pthread_join(tid, NULL); 71 * @tc.name Test the function of pthread_join to get the return value 82 ret = pthread_join(tid, &joinRe); 92 * @tc.name Test the function about pthread_join, but child thread Exited 102 ret = pthread_join(tid, NULL); 126 ret = pthread_join(tid, &joinRe); 157 ret = pthread_join(tid, &joinRe); 177 ret = pthread_join(tid, NULL); 205 ret = pthread_join(tid, NULL);
|
/kernel/liteos_a/testsuites/unittest/libc/posix/mqueue/full/ |
H A D | It_posix_queue_145.cpp | 160 ret = pthread_join(pthreadSend1, NULL); in Testcase() 163 ret = pthread_join(pthreadSend2, NULL); in Testcase() 166 ret = pthread_join(pthreadRecev1, NULL); in Testcase() 169 ret = pthread_join(pthreadRecev2, NULL); in Testcase() 188 pthread_join(pthreadRecev2, NULL); in Testcase() 190 pthread_join(pthreadRecev1, NULL); in Testcase() 192 pthread_join(pthreadSend2, NULL); in Testcase() 194 pthread_join(pthreadSend1, NULL); in Testcase()
|
H A D | It_posix_queue_121.cpp | 211 ret = pthread_join(threadD, NULL); in Testcase() 216 ret = pthread_join(threadC, NULL); in Testcase() 221 ret = pthread_join(threadB, NULL); in Testcase() 226 ret = pthread_join(threadA, NULL); in Testcase() 239 pthread_join(threadD, NULL); in Testcase() 242 pthread_join(threadC, NULL); in Testcase() 245 pthread_join(threadB, NULL); in Testcase() 248 pthread_join(threadB, NULL); in Testcase()
|
H A D | It_posix_queue_160.cpp | 139 ret = pthread_join(pthread1, NULL); in Testcase() 145 ret = pthread_join(pthread2, NULL); in Testcase() 151 ret = pthread_join(pthread3, NULL); in Testcase() 160 pthread_join(pthread3, NULL); in Testcase() 162 pthread_join(pthread2, NULL); in Testcase() 164 pthread_join(pthread1, NULL); in Testcase()
|
H A D | It_posix_queue_079.cpp | 121 ret = pthread_join(thread1, NULL); in Testcase() 124 ret = pthread_join(thread2, NULL); in Testcase() 132 pthread_join(thread2, NULL); in Testcase() 134 pthread_join(thread1, NULL); in Testcase()
|
H A D | It_posix_queue_111.cpp | 82 ret = pthread_join(pthread1, NULL); in PthreadF02() 99 pthread_join(pthread1, NULL); in PthreadF02() 128 ret = pthread_join(pthread1, NULL); in Testcase() 136 pthread_join(pthread1, NULL); in Testcase()
|
/kernel/linux/linux-6.6/tools/testing/selftests/filesystems/epoll/ |
H A D | epoll_wakeup_test.c | 495 ASSERT_EQ(pthread_join(ctx.waiter, NULL), 0); in TEST() 500 pthread_join(emitter, NULL); in TEST() 538 ASSERT_EQ(pthread_join(ctx.waiter, NULL), 0); in TEST() 543 pthread_join(emitter, NULL); in TEST() 585 ASSERT_EQ(pthread_join(ctx.waiter, NULL), 0); in TEST() 590 pthread_join(emitter, NULL); in TEST() 634 ASSERT_EQ(pthread_join(ctx.waiter, NULL), 0); in TEST() 639 pthread_join(emitter, NULL); in TEST() 679 ASSERT_EQ(pthread_join(ctx.waiter, NULL), 0); in TEST() 684 pthread_join(emitte in TEST() [all...] |
/kernel/liteos_a/testsuites/kernel/sample/posix/pthread/full/ |
H A D | It_posix_pthread_033.c | 56 ret = pthread_join(g_newTh, (void *)&temp); in PthreadF02() 81 ret = pthread_join(g_newTh, (void *)&temp); in Testcase() 86 ret = pthread_join(g_newTh, (void *)&temp); in Testcase() 89 ret = pthread_join(newTh, (void *)&temp); in Testcase()
|
H A D | It_posix_pthread_032.c | 57 ret = pthread_join(g_newTh2, (void *)&temp); in PthreadF02() 77 ret = pthread_join(g_newTh, (void *)&temp); in PthreadF03() 113 ret = pthread_join(newTh, (void *)&temp); in Testcase() 117 ret = pthread_join(newTh, (void *)&temp); in Testcase()
|
H A D | It_posix_pthread_060.c | 57 ret = pthread_join(g_newTh, NULL); in PthreadF01() 84 ret = pthread_join(newTh, (void *)&temp); in Testcase() 88 ret = pthread_join(g_newTh, (void *)&temp); in Testcase()
|
H A D | It_posix_pthread_007.c | 72 ret = pthread_join(newTh, (void *)&temp); in Testcase() 85 ret = pthread_join(newTh, (void *)&temp); in Testcase() 94 ret = pthread_join(newTh, (void *)&temp); in Testcase() 104 ret = pthread_join(newTh, (void *)&temp); in Testcase()
|
H A D | It_posix_pthread_035.c | 114 ret = pthread_join(newTh, (void *)&temp); in Testcase() 117 ret = pthread_join(newTh2, (void *)&temp); in Testcase() 120 ret = pthread_join(newTh3, (void *)&temp); in Testcase()
|
H A D | It_posix_pthread_034.c | 110 ret = pthread_join(newTh, (void *)&temp); in Testcase() 113 ret = pthread_join(newTh2, (void *)&temp); in Testcase() 116 ret = pthread_join(newTh3, (void *)&temp); in Testcase()
|
H A D | It_posix_pthread_066.c | 87 ret = pthread_join(g_newTh2, NULL); in PthreadF01() 118 ret = pthread_join(g_newTh, (void *)&temp); in Testcase() 122 ret = pthread_join(g_newTh2, NULL); in Testcase()
|
/kernel/liteos_a/testsuites/kernel/sample/posix/pthread/smoke/ |
H A D | It_posix_pthread_009.c | 63 ret = pthread_join(g_taskMaxNum, (void *)&temp); in Testcase() 67 ret = pthread_join(LOSCFG_BASE_CORE_TSK_CONFIG + 1, (void *)&temp); in Testcase() 74 ret = pthread_join(newTh, NULL); in Testcase() 81 ret = pthread_join(newTh, NULL); in Testcase()
|
/kernel/linux/linux-5.10/tools/testing/selftests/filesystems/epoll/ |
H A D | epoll_wakeup_test.c | 480 ASSERT_EQ(pthread_join(ctx.waiter, NULL), 0); in TEST() 485 pthread_join(emitter, NULL); in TEST() 523 ASSERT_EQ(pthread_join(ctx.waiter, NULL), 0); in TEST() 528 pthread_join(emitter, NULL); in TEST() 570 ASSERT_EQ(pthread_join(ctx.waiter, NULL), 0); in TEST() 575 pthread_join(emitter, NULL); in TEST() 619 ASSERT_EQ(pthread_join(ctx.waiter, NULL), 0); in TEST() 624 pthread_join(emitter, NULL); in TEST() 664 ASSERT_EQ(pthread_join(ctx.waiter, NULL), 0); in TEST() 669 pthread_join(emitte in TEST() [all...] |
/kernel/liteos_a/testsuites/unittest/libc/posix/pthread/full/ |
H A D | It_posix_pthread_007.cpp | 61 ret = pthread_join(newTh, (void **)&uwtemp); in Testcase() 74 ret = pthread_join(newTh, (void **)&uwtemp); in Testcase() 84 ret = pthread_join(newTh, (void **)&uwtemp); in Testcase() 94 ret = pthread_join(newTh, (void **)&uwtemp); in Testcase()
|
H A D | It_posix_pthread_060.cpp | 50 ret = pthread_join(g_newTh, NULL); in pthread_f01() 77 ret = pthread_join(newTh, (void **)&uwtemp); in Testcase() 81 ret = pthread_join(g_newTh, (void **)&uwtemp); in Testcase()
|
H A D | It_posix_pthread_035.cpp | 117 ret = pthread_join(newTh, (void **)&uwtemp); in Testcase() 120 ret = pthread_join(newTh2, (void **)&uwtemp); in Testcase() 123 ret = pthread_join(newTh3, (void **)&uwtemp); in Testcase()
|
/kernel/liteos_a/testsuites/unittest/process/basic/pthread/smoke/ |
H A D | pthread_test_007.cpp | 50 ret = pthread_join(g_th, NULL); in PthreadFunc1115() 63 ret = pthread_join(g_th, NULL); in PthreadFunc2115() 76 ret = pthread_join(g_th, NULL); in PthreadFunc3115() 102 ret = pthread_join(g_th, NULL); in Testcase()
|
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/mm/ |
H A D | pkey_siginfo.c | 303 FAIL_IF(pthread_join(prot_thread, NULL) != 0); in test() 304 FAIL_IF(pthread_join(pacc_thread, NULL) != 0); in test() 311 FAIL_IF(pthread_join(prot_thread, NULL) != 0); in test() 312 FAIL_IF(pthread_join(pacc_thread, NULL) != 0); in test() 319 FAIL_IF(pthread_join(prot_thread, NULL) != 0); in test() 320 FAIL_IF(pthread_join(pacc_thread, NULL) != 0); in test()
|
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/mm/ |
H A D | pkey_siginfo.c | 303 FAIL_IF(pthread_join(prot_thread, NULL) != 0); in test() 304 FAIL_IF(pthread_join(pacc_thread, NULL) != 0); in test() 311 FAIL_IF(pthread_join(prot_thread, NULL) != 0); in test() 312 FAIL_IF(pthread_join(pacc_thread, NULL) != 0); in test() 319 FAIL_IF(pthread_join(prot_thread, NULL) != 0); in test() 320 FAIL_IF(pthread_join(pacc_thread, NULL) != 0); in test()
|
/kernel/liteos_a/testsuites/unittest/process/basic/pthread/full/ |
H A D | pthread_test_014.cpp | 141 ret = pthread_join(tid, NULL); in TestCase() 143 ret = pthread_join(tid1, NULL); in TestCase() 145 ret = pthread_join(tid2, NULL); in TestCase() 147 ret = pthread_join(tid3, NULL); in TestCase()
|
/kernel/liteos_m/testsuites/sample/posix/ |
H A D | pthread_func_test.c | 97 ret = pthread_join(newTh, (void **)&uwtemp); 142 ret = pthread_join(newTh, (void **)&uwtemp); 189 ret = pthread_join(newTh, NULL); 238 ret = pthread_join(newTh, NULL); 285 ret = pthread_join(newTh, NULL); 364 ret = pthread_join(thread[i], NULL); in PthreadFunc06() 406 ret = pthread_join(newTh, NULL); 474 ret = pthread_join(thread[i], NULL); in PthreadFunc07() 515 ret = pthread_join(newTh, NULL); 616 ret = pthread_join(newTh [all...] |
/kernel/liteos_a/testsuites/unittest/extended/signal/smoke/ |
H A D | signal_test_013.cpp | 122 pthread_join(thread, reinterpret_cast<void **>(&status1)); in TestSigMultiPthread() 126 pthread_join(thread1, reinterpret_cast<void **>(&status1)); in TestSigMultiPthread() 130 pthread_join(thread2, reinterpret_cast<void **>(&status1)); in TestSigMultiPthread()
|