~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/arm/include/asm/thread_info.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
/*
130
130
 * thread information flags:
131
131
 *  TIF_SYSCALL_TRACE   - syscall trace active
132
 
 *  TIF_KERNEL_TRACE    - kernel trace active
133
132
 *  TIF_SIGPENDING      - signal pending
134
133
 *  TIF_NEED_RESCHED    - rescheduling necessary
135
134
 *  TIF_NOTIFY_RESUME   - callback before returning to user
139
138
#define TIF_SIGPENDING          0
140
139
#define TIF_NEED_RESCHED        1
141
140
#define TIF_NOTIFY_RESUME       2       /* callback before returning to user */
142
 
#define TIF_KERNEL_TRACE        7
143
141
#define TIF_SYSCALL_TRACE       8
144
142
#define TIF_POLLING_NRFLAG      16
145
143
#define TIF_USING_IWMMXT        17
151
149
#define _TIF_SIGPENDING         (1 << TIF_SIGPENDING)
152
150
#define _TIF_NEED_RESCHED       (1 << TIF_NEED_RESCHED)
153
151
#define _TIF_NOTIFY_RESUME      (1 << TIF_NOTIFY_RESUME)
154
 
#define _TIF_KERNEL_TRACE       (1 << TIF_KERNEL_TRACE)
155
152
#define _TIF_SYSCALL_TRACE      (1 << TIF_SYSCALL_TRACE)
156
153
#define _TIF_POLLING_NRFLAG     (1 << TIF_POLLING_NRFLAG)
157
154
#define _TIF_USING_IWMMXT       (1 << TIF_USING_IWMMXT)