Home
last modified time | relevance | path

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

/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v2/src/
Dthread_apis.c260 osThreadId_t tB = argument; in thread4() local
264 status = osThreadJoin(tB); in thread4()
274 osThreadId_t tA, tB; in ZTEST() local
282 tB = osThreadNew(thread5, NULL, &attr); in ZTEST()
283 zassert_not_null(tB, "Failed to create thread B with osThreadNew!"); in ZTEST()
287 tA = osThreadNew(thread4, tB, &attr); in ZTEST()
291 status = osThreadJoin(tB); in ZTEST()
342 osThreadId_t tA, tB; in ZTEST() local
350 tB = osThreadNew(thread6, tA, &attr); in ZTEST()
351 zassert_not_null(tB, "Failed to create thread with osThreadNew!"); in ZTEST()
[all …]