fixup debug build

This commit is contained in:
graham sanderson 2021-01-31 16:38:38 -06:00 committed by Luke Wren
parent 33dbd11dad
commit 5ca82a9467

View File

@ -72,7 +72,7 @@ bool __time_critical_func(mutex_enter_block_until)(mutex_t *mtx, absolute_time_t
void __time_critical_func(mutex_exit)(mutex_t *mtx) { void __time_critical_func(mutex_exit)(mutex_t *mtx) {
uint32_t save = spin_lock_blocking(mtx->core.spin_lock); uint32_t save = spin_lock_blocking(mtx->core.spin_lock);
assert(mtx->owned); assert(mtx->owner >= 0);
mtx->owner = -1; mtx->owner = -1;
__sev(); __sev();
spin_unlock(mtx->core.spin_lock, save); spin_unlock(mtx->core.spin_lock, save);