Merge pull request #4366 from whj4674672/wqueue

[fix] wait queue flag 赋的值使用宏
This commit is contained in:
Bernard Xiong 2021-03-09 20:59:28 +08:00 committed by GitHub
commit 8bb2817d35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ int rt_wqueue_wait(rt_wqueue_t *queue, int condition, int msec)
level = rt_hw_interrupt_disable();
__exit_wakeup:
queue->flag = 0;
queue->flag = RT_WQ_FLAG_CLEAN;
rt_hw_interrupt_enable(level);
rt_wqueue_remove(&__wait);