xiaoxiang781216 commented on code in PR #3070: URL: https://github.com/apache/nuttx-apps/pull/3070#discussion_r2077175199
########## testing/ostest/signest.c: ########## @@ -52,6 +53,8 @@ * Private Data ****************************************************************************/ +static pid_t waiterpid; Review Comment: should we change to pthread_t ########## testing/ostest/signest.c: ########## @@ -90,10 +93,29 @@ static bool signest_catchable(int signo) return true; } +static void interfere_action(int signo) +{ + pid_t pid = _SCHED_GETTID(); Review Comment: should we use pthread_self -- 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