You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by "mu578 (via GitHub)" <gi...@apache.org> on 2023/09/19 17:57:56 UTC

[GitHub] [nuttx] mu578 commented on a diff in pull request #10681: pthread_once: use [enter|leave]_critical_section replace sched_[un]lock

mu578 commented on code in PR #10681:
URL: https://github.com/apache/nuttx/pull/10681#discussion_r1330512276


##########
libs/libc/pthread/pthread_once.c:
##########
@@ -73,15 +75,15 @@ int pthread_once(FAR pthread_once_t *once_control,
 
   /* Prohibit pre-emption while we test and set the once_control. */
 
-  sched_lock();
+  flags = enter_critical_section();

Review Comment:
   yes it needs a full mutex implementation, so context aware.



-- 
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-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org