Skip to content

Commit 82f42e1

Browse files
committed
rename _lf_cond_timedwait
1 parent 46ed5c8 commit 82f42e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

low_level_platform/impl/src/lf_rp2040_support.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ int lf_cond_wait(lf_cond_t* cond) {
303303
return 0;
304304
}
305305

306-
int lf_cond_timedwait(lf_cond_t* cond, instant_t absolute_time_ns) {
306+
int _lf_cond_timedwait(lf_cond_t* cond, instant_t absolute_time_ns) {
307307
absolute_time_t a = from_us_since_boot(absolute_time_ns / 1000);
308308
bool acquired_permit = sem_acquire_block_until(&(cond->sema), a);
309309
return acquired_permit ? 0 : LF_TIMEOUT;

0 commit comments

Comments
 (0)