Searched refs:thrd_create (Results  1 – 6 of 6) sorted by relevance
| /Zephyr-latest/tests/lib/c_lib/thrd/src/ | 
| D | thrd.c | 64 		zassert_equal(thrd_error, thrd_create(NULL, NULL, NULL));  in ZTEST()65 		zassert_equal(thrd_error, thrd_create(NULL, NULL, ¶m));  in ZTEST()
 66 		zassert_equal(thrd_error, thrd_create(NULL, fun, NULL));  in ZTEST()
 67 		zassert_equal(thrd_error, thrd_create(NULL, fun, ¶m));  in ZTEST()
 68 		zassert_equal(thrd_error, thrd_create(&thr, NULL, NULL));  in ZTEST()
 69 		zassert_equal(thrd_error, thrd_create(&thr, NULL, ¶m));  in ZTEST()
 72 	zassert_equal(thrd_success, thrd_create(&thr, fun, NULL));  in ZTEST()
 75 	zassert_equal(thrd_success, thrd_create(&thr, fun, ¶m));  in ZTEST()
 100 	zassert_equal(thrd_success, thrd_create(&thr, thrd_exit_fn, ¶m));  in ZTEST()
 131 	zassert_equal(thrd_success, thrd_create(&child, thrd_current_equal_fn, NULL));  in ZTEST()
 [all …]
 
 | 
| D | tss.c | 73 	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()
 
 | 
| D | mtx.c | 116 	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()
 
 | 
| D | cnd.c | 96 	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/ | 
| D | thrd.c | 19 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg)  in thrd_create()  function
 | 
| /Zephyr-latest/lib/libc/common/include/ | 
| D | threads.h | 34 int thrd_create(thrd_t *thr, thrd_start_t func, void *arg);
 |