Home
last modified time | relevance | path

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

/Zephyr-latest/tests/kernel/spinlock/src/
Dmain.c161 static struct k_spinlock lock_runtime; in ZTEST() local
164 (void)memset(&lock_runtime, 0, sizeof(lock_runtime)); in ZTEST()
166 key = k_spin_lock(&lock_runtime); in ZTEST()
168 zassert_true(z_spin_is_locked(&lock_runtime), "Spinlock failed to lock"); in ZTEST()
186 k_spin_unlock(&lock_runtime, key); in ZTEST()
188 zassert_true(!z_spin_is_locked(&lock_runtime), "Spinlock failed to unlock"); in ZTEST()