xiaoxiang781216 commented on code in PR #6965: URL: https://github.com/apache/incubator-nuttx/pull/6965#discussion_r989809866
########## fs/vfs/fs_timerfd.c: ########## @@ -282,10 +284,10 @@ static int timerfd_blocking_io(FAR struct timerfd_priv_s *dev, if (ret < 0) { /* Interrupted wait, unregister semaphore - * TODO ensure that exclsem wait does not fail (ECANCELED) + * TODO ensure that lock wait does not fail (ECANCELED) */ - nxsem_wait_uninterruptible(&dev->exclsem); + nxmutex_lock(&dev->lock); timerfd_waiter_sem_t *cur_sem = *slist; Review Comment: Done -- 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