hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/arch/alpha/include/asm/thread_info.h
....@@ -62,6 +62,7 @@
6262 #define TIF_SIGPENDING 2 /* signal pending */
6363 #define TIF_NEED_RESCHED 3 /* rescheduling necessary */
6464 #define TIF_SYSCALL_AUDIT 4 /* syscall audit active */
65
+#define TIF_NOTIFY_SIGNAL 5 /* signal notifications exist */
6566 #define TIF_DIE_IF_KERNEL 9 /* dik recursion lock */
6667 #define TIF_MEMDIE 13 /* is terminating due to OOM killer */
6768 #define TIF_POLLING_NRFLAG 14 /* idle is polling for TIF_NEED_RESCHED */
....@@ -71,11 +72,12 @@
7172 #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
7273 #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
7374 #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT)
75
+#define _TIF_NOTIFY_SIGNAL (1<<TIF_NOTIFY_SIGNAL)
7476 #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
7577
7678 /* Work to do on interrupt/exception return. */
7779 #define _TIF_WORK_MASK (_TIF_SIGPENDING | _TIF_NEED_RESCHED | \
78
- _TIF_NOTIFY_RESUME)
80
+ _TIF_NOTIFY_RESUME | _TIF_NOTIFY_SIGNAL)
7981
8082 /* Work to do on any return to userspace. */
8183 #define _TIF_ALLWORK_MASK (_TIF_WORK_MASK \