···126126 * thread information flags:127127 * TIF_USEDFPU - FPU was used by this task this quantum (SMP)128128 * TIF_POLLING_NRFLAG - true if poll_idle() is polling TIF_NEED_RESCHED129129+ *130130+ * Any bit in the range of 0..15 will cause do_work_pending() to be invoked.129131 */130132#define TIF_SIGPENDING 0 /* signal pending */131133#define TIF_NEED_RESCHED 1 /* rescheduling necessary */···137135#define TIF_SYSCALL_AUDIT 5 /* syscall auditing active */138136#define TIF_SYSCALL_TRACEPOINT 6 /* syscall tracepoint instrumentation */139137#define TIF_SECCOMP 7 /* seccomp syscall filtering active */138138+#define TIF_NOTIFY_SIGNAL 8 /* signal notifications exist */140139141140#define TIF_USING_IWMMXT 17142141#define TIF_MEMDIE 18 /* is terminating due to OOM killer */···151148#define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT)152149#define _TIF_SYSCALL_TRACEPOINT (1 << TIF_SYSCALL_TRACEPOINT)153150#define _TIF_SECCOMP (1 << TIF_SECCOMP)151151+#define _TIF_NOTIFY_SIGNAL (1 << TIF_NOTIFY_SIGNAL)154152#define _TIF_USING_IWMMXT (1 << TIF_USING_IWMMXT)155153156154/* Checks for any syscall work in entry-common.S */···162158 * Change these and you break ASM code in entry-common.S163159 */164160#define _TIF_WORK_MASK (_TIF_NEED_RESCHED | _TIF_SIGPENDING | \165165- _TIF_NOTIFY_RESUME | _TIF_UPROBE)161161+ _TIF_NOTIFY_RESUME | _TIF_UPROBE | \162162+ _TIF_NOTIFY_SIGNAL)166163167164#endif /* __KERNEL__ */168165#endif /* __ASM_ARM_THREAD_INFO_H */