xiaoxiang781216 commented on code in PR #16231: URL: https://github.com/apache/nuttx/pull/16231#discussion_r2074680567
########## sched/wqueue/kwork_thread.c: ########## @@ -110,6 +116,53 @@ struct lp_wqueue_s g_lpwork = * Private Functions ****************************************************************************/ +static inline_function +void work_dispatch(FAR struct kwork_wqueue_s *wq) +{ + FAR struct work_s *work; + FAR struct work_s *next; + unsigned int count = 0; Review Comment: let's remove the count and call nxsem_post in the loop directly -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org