xiaoxiang781216 commented on code in PR #19116:
URL: https://github.com/apache/nuttx/pull/19116#discussion_r3409378452


##########
libs/libc/pthread/pthread_kill.c:
##########
@@ -61,7 +67,25 @@
 
 int pthread_kill(pthread_t thread, int signo)
 {
-  int ret = tkill((pid_t)thread, signo);
+  int ret;
+
+#ifdef CONFIG_DISABLE_ALL_SIGNALS
+  struct sched_param param;

Review Comment:
   since kernel may call nxsig_kill to detect whether the target thread exist



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

Reply via email to