.. | .. |
---|
104 | 104 | #define TIF_SIGPENDING 2 /* signal pending */ |
---|
105 | 105 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ |
---|
106 | 106 | #define TIF_RESTORE_SIGMASK 4 /* restore signal mask in do_signal() */ |
---|
| 107 | +#define TIF_NOTIFY_SIGNAL 5 /* signal notifications exist */ |
---|
107 | 108 | #define TIF_USEDFPU 8 /* FPU was used by this task |
---|
108 | 109 | * this quantum (SMP) */ |
---|
109 | 110 | #define TIF_POLLING_NRFLAG 9 /* true if poll_idle() is polling |
---|
.. | .. |
---|
115 | 116 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) |
---|
116 | 117 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) |
---|
117 | 118 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) |
---|
| 119 | +#define _TIF_NOTIFY_SIGNAL (1<<TIF_NOTIFY_SIGNAL) |
---|
118 | 120 | #define _TIF_USEDFPU (1<<TIF_USEDFPU) |
---|
119 | 121 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) |
---|
120 | 122 | |
---|
121 | 123 | #define _TIF_DO_NOTIFY_RESUME_MASK (_TIF_NOTIFY_RESUME | \ |
---|
122 | | - _TIF_SIGPENDING) |
---|
| 124 | + _TIF_SIGPENDING | _TIF_NOTIFY_SIGNAL) |
---|
123 | 125 | |
---|
124 | 126 | #define is_32bit_task() (1) |
---|
125 | 127 | |
---|