wangchdo commented on code in PR #17352:
URL: https://github.com/apache/nuttx/pull/17352#discussion_r2545727519
##########
include/nuttx/signal.h:
##########
@@ -696,6 +698,28 @@ void nxsig_cancel_notification(FAR struct sigwork_s *work);
# define nxsig_cancel_notification(work)
#endif
+#else
+
+# define nxsig_ismember(set,sig) -EINVAL
Review Comment:
Done, please check
##########
sched/pthread/pthread_exit.c:
##########
@@ -75,9 +75,10 @@ void nx_pthread_exit(FAR void *exit_value)
/* Block any signal actions that would awaken us while were
* are performing the JOIN handshake.
*/
-
+#ifndef CONFIG_DISABLE_SIGNALS
sigfillset(&set);
nxsig_procmask(SIG_SETMASK, &set, NULL);
Review Comment:
Done, please check
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]