Home
last modified time | relevance | path

Searched refs:thrd_create (Results 1 – 6 of 6) sorted by relevance

/Zephyr-latest/tests/lib/c_lib/thrd/src/
Dthrd.c64 zassert_equal(thrd_error, thrd_create(NULL, NULL, NULL)); in ZTEST()
65 zassert_equal(thrd_error, thrd_create(NULL, NULL, &param)); in ZTEST()
66 zassert_equal(thrd_error, thrd_create(NULL, fun, NULL)); in ZTEST()
67 zassert_equal(thrd_error, thrd_create(NULL, fun, &param)); in ZTEST()
68 zassert_equal(thrd_error, thrd_create(&thr, NULL, NULL)); in ZTEST()
69 zassert_equal(thrd_error, thrd_create(&thr, NULL, &param)); in ZTEST()
72 zassert_equal(thrd_success, thrd_create(&thr, fun, NULL)); in ZTEST()
75 zassert_equal(thrd_success, thrd_create(&thr, fun, &param)); in ZTEST()
100 zassert_equal(thrd_success, thrd_create(&thr, thrd_exit_fn, &param)); in ZTEST()
131 zassert_equal(thrd_success, thrd_create(&child, thrd_current_equal_fn, NULL)); in ZTEST()
[all …]
Dtss.c73 zassert_equal(thrd_success, thrd_create(&thread1, thread_fn, (void *)&forty_two)); in ZTEST()
74 zassert_equal(thrd_success, thrd_create(&thread2, thread_fn, (void *)&seventy_three)); in ZTEST()
Dmtx.c116 zassert_equal(thrd_success, thrd_create(&th, mtx_timedlock_fn, &mutex)); in ZTEST()
123 zassert_equal(thrd_success, thrd_create(&th, mtx_timedlock_fn, &mutex)); in ZTEST()
149 zassert_equal(thrd_success, thrd_create(&th, mtx_trylock_fn, &mutex)); in ZTEST()
Dcnd.c96 zassert_equal(thrd_success, thrd_create(&fixture->thrd1, test_cnd_thread_fn, fixture)); in tst_cnd_common()
99 thrd_create(&fixture->thrd2, test_cnd_thread_fn, fixture)); in tst_cnd_common()
/Zephyr-latest/lib/libc/common/source/thrd/
Dthrd.c19 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg) in thrd_create() function
/Zephyr-latest/lib/libc/common/include/
Dthreads.h34 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg);