Home
last modified time | relevance | path

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

/Zephyr-Core-2.7.6/tests/subsys/portability/cmsis_rtos_v1/src/
Dthread_apis.c42 void thread2(void const *argument) in thread2() function
97 osThreadDef(thread2, osPriorityHigh, 1, STACKSZ);
139 id2 = osThreadCreate(osThread(thread2), NULL); in test_thread_apis()
/Zephyr-Core-2.7.6/tests/posix/common/src/
Dsemaphore.c49 pthread_t thread1, thread2; in test_posix_semaphore() local
123 zassert_equal(pthread_create(&thread2, &attr2, child_func, NULL), 0, in test_posix_semaphore()
/Zephyr-Core-2.7.6/tests/kernel/workq/critical/src/
Dmain.c54 static struct k_thread thread2; variable
208 k_thread_create(&thread2, stack2, STACK_SIZE, in test_offload_workqueue()
/Zephyr-Core-2.7.6/tests/subsys/portability/cmsis_rtos_v2/src/
Dthread_flags.c49 static void thread2(void *arg) in thread2() function
109 id = osThreadNew(thread2, osThreadGetId(), &thread2_attr); in test_thread_flags_signalled()
Devent_flags.c30 static void thread2(void *arg) in thread2() function
131 id2 = osThreadNew(thread2, evt_id, &thread2_attr); in test_event_flags_signalled()
Dthread_apis.c68 static void thread2(void *argument) in thread2() function
128 id2 = osThreadNew(thread2, yield_check, thread2_attr); in thread_apis_common()