mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-13 07:17:35 +08:00
px4_work_queue: sem_wait add loop as the wait may be interrupted by a signal
This commit is contained in:
@@ -149,7 +149,8 @@ void
|
||||
WorkQueue::Run()
|
||||
{
|
||||
while (!should_exit()) {
|
||||
px4_sem_wait(&_process_lock);
|
||||
// loop as the wait may be interrupted by a signal
|
||||
do {} while (px4_sem_wait(&_process_lock) != 0);
|
||||
|
||||
work_lock();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user