diff options
Diffstat (limited to 'include/asm-blackfin/thread_info.h')
-rw-r--r-- | include/asm-blackfin/thread_info.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/include/asm-blackfin/thread_info.h b/include/asm-blackfin/thread_info.h index 34d3c2eec949..15b99cf4f50b 100644 --- a/include/asm-blackfin/thread_info.h +++ b/include/asm-blackfin/thread_info.h | |||
@@ -118,18 +118,16 @@ static inline struct thread_info *current_thread_info(void) | |||
118 | * thread information flag bit numbers | 118 | * thread information flag bit numbers |
119 | */ | 119 | */ |
120 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ | 120 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ |
121 | #define TIF_NOTIFY_RESUME 1 /* resumption notification requested */ | 121 | #define TIF_SIGPENDING 1 /* signal pending */ |
122 | #define TIF_SIGPENDING 2 /* signal pending */ | 122 | #define TIF_NEED_RESCHED 2 /* rescheduling necessary */ |
123 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ | 123 | #define TIF_POLLING_NRFLAG 3 /* true if poll_idle() is polling |
124 | #define TIF_POLLING_NRFLAG 4 /* true if poll_idle() is polling | ||
125 | TIF_NEED_RESCHED */ | 124 | TIF_NEED_RESCHED */ |
126 | #define TIF_MEMDIE 5 | 125 | #define TIF_MEMDIE 4 |
127 | #define TIF_RESTORE_SIGMASK 6 /* restore signal mask in do_signal() */ | 126 | #define TIF_RESTORE_SIGMASK 5 /* restore signal mask in do_signal() */ |
128 | #define TIF_FREEZE 7 /* is freezing for suspend */ | 127 | #define TIF_FREEZE 6 /* is freezing for suspend */ |
129 | 128 | ||
130 | /* as above, but as bit values */ | 129 | /* as above, but as bit values */ |
131 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) | 130 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) |
132 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) | ||
133 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) | 131 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) |
134 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) | 132 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) |
135 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) | 133 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) |