Skip to content

Commit 9bc9c9a

Browse files
committed
rename _lf_cond_timedwait
1 parent b9e1d9a commit 9bc9c9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/platform/lf_rp2040_support.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ int lf_cond_wait(lf_cond_t* cond) {
308308
return 0;
309309
}
310310

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

0 commit comments

Comments
 (0)