Searched refs:thrd_join (Results 1 – 6 of 6) sorted by relevance
/Zephyr-latest/tests/lib/c_lib/thrd/src/ |
D | thrd.c | 73 zassert_equal(thrd_success, thrd_join(thr, NULL)); in ZTEST() 76 zassert_equal(thrd_success, thrd_join(thr, &res)); in ZTEST() 101 zassert_equal(thrd_success, thrd_join(thr, &res)); in ZTEST() 132 zassert_equal(thrd_success, thrd_join(child, NULL)); in ZTEST() 149 zassert_equal(thrd_error, thrd_join(thr, NULL)); in ZTEST() 155 zassert_equal(thrd_error, thrd_join(thr, NULL)); in ZTEST() 162 zassert_equal(thrd_success, thrd_join(thr, NULL)); in ZTEST()
|
D | tss.c | 76 zassert_equal(thrd_success, thrd_join(thread1, &res1)); in ZTEST() 77 zassert_equal(thrd_success, thrd_join(thread2, &res2)); in ZTEST()
|
D | mtx.c | 117 zassert_equal(thrd_success, thrd_join(th, &ret)); in ZTEST() 127 zassert_equal(thrd_success, thrd_join(th, &ret)); in ZTEST() 150 zassert_equal(thrd_success, thrd_join(th, &ret)); in ZTEST()
|
D | cnd.c | 112 zassert_equal(thrd_success, thrd_join(fixture->thrd1, &fixture->res1)); in tst_cnd_common() 114 zassert_equal(thrd_success, thrd_join(fixture->thrd2, &fixture->res2)); in tst_cnd_common()
|
/Zephyr-latest/lib/libc/common/source/thrd/ |
D | thrd.c | 72 int thrd_join(thrd_t thr, int *res) in thrd_join() function
|
/Zephyr-latest/lib/libc/common/include/ |
D | threads.h | 41 int thrd_join(thrd_t thr, int *res);
|