wangchdo commented on code in PR #17644: URL: https://github.com/apache/nuttx/pull/17644#discussion_r2684435213
########## include/nuttx/sched.h: ########## @@ -660,10 +662,13 @@ struct tcb_s /* POSIX Signal Control Fields ********************************************/ - sigset_t sigprocmask; /* Signals that are blocked */ - sigset_t sigwaitmask; /* Waiting for pending signals */ +#ifdef CONFIG_ENABLE_ALL_SIGNALS + sig_deliver_t sigdeliver; Review Comment: `sigdeliver `is per task member, it was in `struct tcb_s` putting it in `struct task_group_s` now will cause build error. -- 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]
