We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44527b4 commit 52ec9ecCopy full SHA for 52ec9ec
src/rp2_common/pico_async_context/async_context_threadsafe_background.c
@@ -145,7 +145,7 @@ uint32_t async_context_threadsafe_background_execute_sync(async_context_t *self_
145
// Note that this read of the owner is not synchronized with the other core; however we only
146
// care about it being set to `calling_core`, which the other core will not transition
147
// it either from or to.
148
- hard_assert(recursive_mutex_owner(&self->lock_mutex) != lock_get_caller_owner_id());
+ assert(recursive_mutex_owner(&self->lock_mutex) != lock_get_caller_owner_id());
149
sync_func_call_t call = {0};
150
call.worker.do_work = handle_sync_func_call;
151
call.func = func;
0 commit comments