···118#define TIF_USEDFPU 16 /* FPU was used by this task this quantum (SMP) */119#define TIF_POLLING_NRFLAG 17 /* true if poll_idle() is polling TIF_NEED_RESCHED */120#define TIF_MEMDIE 180121#define TIF_SYSCALL_TRACE 31 /* syscall trace active */122123#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)···130#define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK)131#define _TIF_USEDFPU (1<<TIF_USEDFPU)132#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)0133134/* work to do on interrupt/exception return */135#define _TIF_WORK_MASK (0x0000ffef & ~_TIF_SECCOMP)
···118#define TIF_USEDFPU 16 /* FPU was used by this task this quantum (SMP) */119#define TIF_POLLING_NRFLAG 17 /* true if poll_idle() is polling TIF_NEED_RESCHED */120#define TIF_MEMDIE 18121+#define TIF_FREEZE 19122#define TIF_SYSCALL_TRACE 31 /* syscall trace active */123124#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)···129#define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK)130#define _TIF_USEDFPU (1<<TIF_USEDFPU)131#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)132+#define _TIF_FREEZE (1<<TIF_FREEZE)133134/* work to do on interrupt/exception return */135#define _TIF_WORK_MASK (0x0000ffef & ~_TIF_SECCOMP)