Searched refs:mp_flag (Results 1 – 2 of 2) sorted by relevance
/Zephyr-latest/tests/kernel/smp_boot_delay/src/ |
D | main.c | 24 volatile bool mp_flag; variable 31 mp_flag = true; in thread_fn() 46 zassert_false(mp_flag, "CPU1 must not be running yet"); in ZTEST() 53 zassert_true(mp_flag, "CPU1 did not start"); in ZTEST() 63 mp_flag = false; in ZTEST() 73 zassert_true(mp_flag, "CPU1 did not start thread via IPI"); in ZTEST() 96 mp_flag = false; in ZTEST() 110 zassert_false(mp_flag, "CPU2 must not be running yet"); in ZTEST() 117 zassert_true(mp_flag, "CPU2 did not start"); in ZTEST()
|
/Zephyr-latest/tests/boards/intel_adsp/smoke/src/ |
D | smpboot.c | 24 volatile bool mp_flag; variable 35 mp_flag = true; in thread_fn() 51 mp_flag = false; in ZTEST() 61 zassert_false(mp_flag, "cpu %d must not be running yet", i); in ZTEST() 68 zassert_true(mp_flag, "cpu %d did not start", i); in ZTEST() 86 mp_flag = false; in ZTEST() 92 zassert_true(mp_flag, "cpu did not start thread via IPI"); in ZTEST()
|