Searched refs:tA (Results 1 – 1 of 1) sorted by relevance
/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v2/src/ |
D | thread_apis.c | 274 osThreadId_t tA, tB; in ZTEST() local 287 tA = osThreadNew(thread4, tB, &attr); in ZTEST() 288 zassert_not_null(tA, "Failed to create thread A with osThreadNew!"); in ZTEST() 304 status = osThreadJoin(tA); in ZTEST() 342 osThreadId_t tA, tB; in ZTEST() local 347 tA = osThreadNew(thread5, NULL, &attr); in ZTEST() 348 zassert_not_null(tA, "Failed to create thread with osThreadNew!"); in ZTEST() 350 tB = osThreadNew(thread6, tA, &attr); in ZTEST() 355 status = osThreadDetach(tA); in ZTEST() 364 osThreadId_t tA, tB; in ZTEST() local [all …]
|