Lines Matching refs:thrd_success
72 zassert_equal(thrd_success, thrd_create(&thr, fun, NULL)); in ZTEST()
73 zassert_equal(thrd_success, thrd_join(thr, NULL)); in ZTEST()
75 zassert_equal(thrd_success, thrd_create(&thr, fun, ¶m)); in ZTEST()
76 zassert_equal(thrd_success, thrd_join(thr, &res)); in ZTEST()
100 zassert_equal(thrd_success, thrd_create(&thr, thrd_exit_fn, ¶m)); in ZTEST()
101 zassert_equal(thrd_success, thrd_join(thr, &res)); in ZTEST()
131 zassert_equal(thrd_success, thrd_create(&child, thrd_current_equal_fn, NULL)); in ZTEST()
132 zassert_equal(thrd_success, thrd_join(child, NULL)); in ZTEST()
147 zassert_equal(thrd_success, thrd_create(&thr, thrd_detach_fn, NULL)); in ZTEST()
148 zassert_equal(thrd_success, thrd_detach(thr)); in ZTEST()
161 zassert_equal(thrd_success, thrd_create(&thr, thrd_create_join_fn, NULL)); in ZTEST()
162 zassert_equal(thrd_success, thrd_join(thr, NULL)); in ZTEST()