jlaitine commented on code in PR #16334: URL: https://github.com/apache/nuttx/pull/16334#discussion_r2079012684
########## 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: Ok. that change to raise was just wrong. I reverted it. Found other bugs and fixed those, I had made mistakes in signal pending set handling. Perhaps the patch is now ok, at least passes tests on my PC (although I had to revert #16231 , because with those changes more or less nothing works for me, I filed an issue on that). -- 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