wangzhi-art commented on code in PR #15345:
URL: https://github.com/apache/nuttx/pull/15345#discussion_r1900885981


##########
arch/misoc/src/minerva/minerva_sigdeliver.c:
##########
@@ -78,8 +78,8 @@ void minerva_sigdeliver(void)
    * more signal deliveries while processing the current pending signals.
    */
 
-  sigdeliver       = rtcb->sigdeliver;
-  rtcb->sigdeliver = NULL;
+  sigdeliver       = nxsig_deliver;

Review Comment:
   Done.



##########
include/nuttx/sched.h:
##########
@@ -134,6 +134,7 @@
 #define TCB_FLAG_FORCED_CANCEL     (1 << 13)                     /* Bit 13: 
Pthread cancel is forced */
 #define TCB_FLAG_JOIN_COMPLETED    (1 << 14)                     /* Bit 14: 
Pthread join completed */
 #define TCB_FLAG_FREE_TCB          (1 << 15)                     /* Bit 15: 
Free tcb after exit */
+#define TCB_FLAG_SIGDELIVER        (1 << 16)                     /* Bit 16: 
Deliver pending signals */

Review Comment:
   Done.



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