mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-09 09:28:31 -04:00
AP_HAL_PX4: use HAL_SEMAPHORE_BLOCK_FOREVER
This commit is contained in:
parent
b11ca5d538
commit
3ff4cd8c07
@ -20,7 +20,7 @@ bool Semaphore::take(uint32_t timeout_ms)
|
||||
// don't ever wait on a semaphore in interrupt context
|
||||
return take_nonblocking();
|
||||
}
|
||||
if (timeout_ms == 0) {
|
||||
if (timeout_ms == HAL_SEMAPHORE_BLOCK_FOREVER) {
|
||||
return pthread_mutex_lock(&_lock) == 0;
|
||||
}
|
||||
if (take_nonblocking()) {
|
||||
|
Loading…
Reference in New Issue
Block a user