pussuw commented on code in PR #11165:
URL: https://github.com/apache/nuttx/pull/11165#discussion_r1393167474


##########
sched/pthread/pthread_condclockwait.c:
##########
@@ -104,7 +105,7 @@ int pthread_cond_clockwait(FAR pthread_cond_t *cond,
 
   else if (!abstime)
     {
-      ret = pthread_cond_wait(cond, mutex);
+      ret = nx_pthread_cond_wait(cond, mutex);

Review Comment:
   nxsem_clockwait_uninterruptible should not (and is not) a cancellation point 
though.
   
   Anything with the nx-prefix should not be a cancellation point. I think the 
naming is like "nx-prefix means the function is a kernel API" and kernel does 
not use cancel points.



-- 
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

Reply via email to