sched/signal: move unblock signal info to stack

struct tcb_s will reduce by 24 bytes

Signed-off-by: chao an <anchao@lixiang.com>
This commit is contained in:
chao an
2024-03-14 17:35:30 +08:00
committed by Xiang Xiao
parent d2fd043575
commit 2b4002d9ad
3 changed files with 26 additions and 28 deletions
+1 -1
View File
@@ -628,7 +628,7 @@ struct tcb_s
sigset_t sigwaitmask; /* Waiting for pending signals */
sq_queue_t sigpendactionq; /* List of pending signal actions */
sq_queue_t sigpostedq; /* List of posted signals */
siginfo_t sigunbinfo; /* Signal info when task unblocked */
siginfo_t *sigunbinfo; /* Signal info when task unblocked */
/* Robust mutex support ***************************************************/