Home
last modified time | relevance | path

Searched refs:osThreadNew (Results 1 – 9 of 9) sorted by relevance

/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v2/src/
Dthread_apis.c118 id1 = osThreadNew(thread1, &args, thread1_attr); in thread_apis_common()
121 id2 = osThreadNew(thread2, yield_check, thread2_attr); in thread_apis_common()
200 id3 = osThreadNew(thread3, state, attr); in thread_prior_common()
268 tB = osThreadNew(thread5, NULL, &attr); in ZTEST()
273 tA = osThreadNew(thread4, tB, &attr); in ZTEST()
303 thread = osThreadNew(thread5, NULL, NULL); /* osThreadDetached */ in ZTEST()
334 tA = osThreadNew(thread5, NULL, &attr); in ZTEST()
337 tB = osThreadNew(thread6, tA, &attr); in ZTEST()
356 tA = osThreadNew(thread5, NULL, &attr); in ZTEST()
359 tB = osThreadNew(thread6, tA, &attr); in ZTEST()
[all …]
Devent_flags.c86 id1 = osThreadNew(thread1, evt_id, &thread1_attr); in test_event_flags_no_wait_timeout()
122 id1 = osThreadNew(thread1, evt_id, &thread1_attr); in test_event_flags_signalled()
128 id2 = osThreadNew(thread2, evt_id, &thread2_attr); in test_event_flags_signalled()
192 id = osThreadNew(test_event_from_isr, evt_id, &thread3_attr); in test_event_flags_isr()
Dthread_flags.c90 id1 = osThreadNew(thread1, NULL, &thread1_attr); in ZTEST()
105 id = osThreadNew(thread2, osThreadGetId(), &thread2_attr); in ZTEST()
159 id = osThreadNew(test_thread_flags_from_isr, osThreadGetId(), &thread3_attr); in ZTEST()
Dsemaphore.c73 id = osThreadNew(thread_sema, semaphore_id, &thread_attr); in ZTEST()
Dmutex.c157 id = osThreadNew(tThread_entry_lock_timeout, mutex_id, &thread_attr); in ZTEST()
Dmsgq.c153 tid = osThreadNew(send_msg_thread, NULL, &thread_attr); in ZTEST()
/Zephyr-latest/samples/subsys/portability/cmsis_rtos_v2/philosophers/src/
Dmain.c228 osThreadNew(philosopher, INT_TO_POINTER(i), &thread_attr[i]); in start_threads()
/Zephyr-latest/include/zephyr/portability/
Dcmsis_os2.h368 osThreadId_t osThreadNew(osThreadFunc_t func, void *argument, const osThreadAttr_t *attr);
/Zephyr-latest/subsys/portability/cmsis_rtos_v2/
Dthread.c102 osThreadId_t osThreadNew(osThreadFunc_t threadfunc, void *arg, const osThreadAttr_t *attr) in osThreadNew() function