Home
last modified time | relevance | path

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

/Zephyr-latest/tests/kernel/sched/schedule_api/src/
Dtest_sched_priority.c56 int spawn_prio = last_prio - 1; in ZTEST() local
60 spawn_prio, 0, K_NO_WAIT); in ZTEST()
65 zassert_true(last_prio == spawn_prio); in ZTEST()
91 int spawn_prio = last_prio - 1; in ZTEST() local
95 spawn_prio, 0, K_NO_WAIT); in ZTEST()
97 zassert_true(last_prio == spawn_prio); in ZTEST()
102 spawn_prio = last_prio + 1; in ZTEST()
105 spawn_prio, 0, K_NO_WAIT); in ZTEST()
107 zassert_false(last_prio == spawn_prio); in ZTEST()
/Zephyr-latest/tests/kernel/threads/thread_apis/src/
Dtest_threads_spawn.c15 static ZTEST_BMEM int spawn_prio; variable
28 zassert_equal(k_thread_priority_get(k_current_get()), spawn_prio); in thread_entry_priority()
68 spawn_prio = k_thread_priority_get(k_current_get()) - 1; in ZTEST()
70 NULL, NULL, NULL, spawn_prio, K_USER, K_NO_WAIT); in ZTEST()