diff options
| author | Alexey Dobriyan <adobriyan@openvz.org> | 2007-01-23 11:03:17 -0500 |
|---|---|---|
| committer | Tony Luck <tony.luck@intel.com> | 2007-05-08 17:51:59 -0400 |
| commit | 4a177cbf84f827cf9f1d6cfa5264fafd3cc33ce0 (patch) | |
| tree | ef04ada4e2b708ee965081cd905026c9156863d3 /include/asm-ia64 | |
| parent | 690def21414fa43fac1b8053fd952c0366c476de (diff) | |
[IA64] Add TIF_RESTORE_SIGMASK
Preparation for pselect and ppoll.
ia32 compat code not tested. :-(
Signed-off-by: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Signed-off-by: Alexey Dobriyan <adobriyan@openvz.org>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'include/asm-ia64')
| -rw-r--r-- | include/asm-ia64/thread_info.h | 4 | ||||
| -rw-r--r-- | include/asm-ia64/unistd.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/asm-ia64/thread_info.h b/include/asm-ia64/thread_info.h index 91698599f918..077d6778575a 100644 --- a/include/asm-ia64/thread_info.h +++ b/include/asm-ia64/thread_info.h | |||
| @@ -85,6 +85,7 @@ struct thread_info { | |||
| 85 | #define TIF_SYSCALL_TRACE 3 /* syscall trace active */ | 85 | #define TIF_SYSCALL_TRACE 3 /* syscall trace active */ |
| 86 | #define TIF_SYSCALL_AUDIT 4 /* syscall auditing active */ | 86 | #define TIF_SYSCALL_AUDIT 4 /* syscall auditing active */ |
| 87 | #define TIF_SINGLESTEP 5 /* restore singlestep on return to user mode */ | 87 | #define TIF_SINGLESTEP 5 /* restore singlestep on return to user mode */ |
| 88 | #define TIF_RESTORE_SIGMASK 6 /* restore signal mask in do_signal() */ | ||
| 88 | #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling TIF_NEED_RESCHED */ | 89 | #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling TIF_NEED_RESCHED */ |
| 89 | #define TIF_MEMDIE 17 | 90 | #define TIF_MEMDIE 17 |
| 90 | #define TIF_MCA_INIT 18 /* this task is processing MCA or INIT */ | 91 | #define TIF_MCA_INIT 18 /* this task is processing MCA or INIT */ |
| @@ -96,6 +97,7 @@ struct thread_info { | |||
| 96 | #define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP) | 97 | #define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP) |
| 97 | #define _TIF_SYSCALL_TRACEAUDIT (_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_SINGLESTEP) | 98 | #define _TIF_SYSCALL_TRACEAUDIT (_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_SINGLESTEP) |
| 98 | #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME) | 99 | #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME) |
| 100 | #define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK) | ||
| 99 | #define _TIF_SIGPENDING (1 << TIF_SIGPENDING) | 101 | #define _TIF_SIGPENDING (1 << TIF_SIGPENDING) |
| 100 | #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED) | 102 | #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED) |
| 101 | #define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG) | 103 | #define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG) |
| @@ -104,7 +106,7 @@ struct thread_info { | |||
| 104 | #define _TIF_FREEZE (1 << TIF_FREEZE) | 106 | #define _TIF_FREEZE (1 << TIF_FREEZE) |
| 105 | 107 | ||
| 106 | /* "work to do on user-return" bits */ | 108 | /* "work to do on user-return" bits */ |
| 107 | #define TIF_ALLWORK_MASK (_TIF_NOTIFY_RESUME|_TIF_SIGPENDING|_TIF_NEED_RESCHED|_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT) | 109 | #define TIF_ALLWORK_MASK (_TIF_NOTIFY_RESUME|_TIF_SIGPENDING|_TIF_NEED_RESCHED|_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_RESTORE_SIGMASK) |
| 108 | /* like TIF_ALLWORK_BITS but sans TIF_SYSCALL_TRACE or TIF_SYSCALL_AUDIT */ | 110 | /* like TIF_ALLWORK_BITS but sans TIF_SYSCALL_TRACE or TIF_SYSCALL_AUDIT */ |
| 109 | #define TIF_WORK_MASK (TIF_ALLWORK_MASK&~(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT)) | 111 | #define TIF_WORK_MASK (TIF_ALLWORK_MASK&~(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT)) |
| 110 | 112 | ||
diff --git a/include/asm-ia64/unistd.h b/include/asm-ia64/unistd.h index a9e1fa4cac4d..e586739bcc15 100644 --- a/include/asm-ia64/unistd.h +++ b/include/asm-ia64/unistd.h | |||
| @@ -300,6 +300,7 @@ | |||
| 300 | #define NR_syscalls 281 /* length of syscall table */ | 300 | #define NR_syscalls 281 /* length of syscall table */ |
| 301 | 301 | ||
| 302 | #define __ARCH_WANT_SYS_RT_SIGACTION | 302 | #define __ARCH_WANT_SYS_RT_SIGACTION |
| 303 | #define __ARCH_WANT_SYS_RT_SIGSUSPEND | ||
| 303 | 304 | ||
| 304 | #ifdef CONFIG_IA32_SUPPORT | 305 | #ifdef CONFIG_IA32_SUPPORT |
| 305 | # define __ARCH_WANT_SYS_FADVISE64 | 306 | # define __ARCH_WANT_SYS_FADVISE64 |
| @@ -310,6 +311,7 @@ | |||
| 310 | # define __ARCH_WANT_SYS_OLDUMOUNT | 311 | # define __ARCH_WANT_SYS_OLDUMOUNT |
| 311 | # define __ARCH_WANT_SYS_SIGPENDING | 312 | # define __ARCH_WANT_SYS_SIGPENDING |
| 312 | # define __ARCH_WANT_SYS_SIGPROCMASK | 313 | # define __ARCH_WANT_SYS_SIGPROCMASK |
| 314 | # define __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND | ||
| 313 | # define __ARCH_WANT_COMPAT_SYS_TIME | 315 | # define __ARCH_WANT_COMPAT_SYS_TIME |
| 314 | #endif | 316 | #endif |
| 315 | 317 | ||
