Searched refs:osThreadNew (Results 1 – 9 of 9) sorted by relevance
| /Zephyr-latest/tests/subsys/portability/cmsis_rtos_v2/src/ |
| D | thread_apis.c | 118 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 …]
|
| D | event_flags.c | 86 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()
|
| D | thread_flags.c | 90 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()
|
| D | semaphore.c | 73 id = osThreadNew(thread_sema, semaphore_id, &thread_attr); in ZTEST()
|
| D | mutex.c | 157 id = osThreadNew(tThread_entry_lock_timeout, mutex_id, &thread_attr); in ZTEST()
|
| D | msgq.c | 153 tid = osThreadNew(send_msg_thread, NULL, &thread_attr); in ZTEST()
|
| /Zephyr-latest/samples/subsys/portability/cmsis_rtos_v2/philosophers/src/ |
| D | main.c | 228 osThreadNew(philosopher, INT_TO_POINTER(i), &thread_attr[i]); in start_threads()
|
| /Zephyr-latest/include/zephyr/portability/ |
| D | cmsis_os2.h | 368 osThreadId_t osThreadNew(osThreadFunc_t func, void *argument, const osThreadAttr_t *attr);
|
| /Zephyr-latest/subsys/portability/cmsis_rtos_v2/ |
| D | thread.c | 102 osThreadId_t osThreadNew(osThreadFunc_t threadfunc, void *arg, const osThreadAttr_t *attr) in osThreadNew() function
|