jlaitine commented on code in PR #16334:
URL: https://github.com/apache/nuttx/pull/16334#discussion_r2078910326


##########
libs/libc/signal/sig_raise.c:
##########
@@ -45,5 +45,5 @@
 
 int raise(int signo)
 {
-  return tkill(_SCHED_GETTID(), signo);
+  return tgkill(_SCHED_GETPID(), _SCHED_GETTID(), signo);

Review Comment:
   Having said all that, I don't think this part of the PR is correct either, 
the "raise" should send the signal specifically to the calling thread. I still 
need to tinker with this.
   
   I am currently having some issues with tests on the master, something has 
happened yesterday or the day before, and for example sim:citest is just 
segfaulting for me now.



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