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 b9e1d9a commit 9bc9c9aCopy full SHA for 9bc9c9a
core/platform/lf_rp2040_support.c
@@ -308,7 +308,7 @@ int lf_cond_wait(lf_cond_t* cond) {
308
return 0;
309
}
310
311
-int lf_cond_timedwait(lf_cond_t* cond, instant_t absolute_time_ns) {
+int _lf_cond_timedwait(lf_cond_t* cond, instant_t absolute_time_ns) {
312
absolute_time_t a = from_us_since_boot(absolute_time_ns / 1000);
313
bool acquired_permit = sem_acquire_block_until(&(cond->sema), a);
314
return acquired_permit ? 0 : LF_TIMEOUT;
0 commit comments