diff options
author | Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> | 2008-10-30 02:46:40 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-30 11:43:49 +0100 |
commit | 57917752f51bcead3bb6c83d74137fbe342504ec (patch) | |
tree | e20e8c7871f70ecb185cef3f34e9d3c36bcf2f6a /arch/x86/kernel/signal_32.c | |
parent | x86: signal: cosmetic unification of macros for setup_rt_frame() (diff) | |
download | linux-57917752f51bcead3bb6c83d74137fbe342504ec.tar.xz linux-57917752f51bcead3bb6c83d74137fbe342504ec.zip |
x86: signal: cosmetic unification of NR_restart_syscall
Impact: cleanup
Add #ifdef directive to unify NR_restart_syscall.
Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/signal_32.c')
-rw-r--r-- | arch/x86/kernel/signal_32.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/kernel/signal_32.c b/arch/x86/kernel/signal_32.c index 6f3b9a9cc123..a0efc1b3c4c9 100644 --- a/arch/x86/kernel/signal_32.c +++ b/arch/x86/kernel/signal_32.c @@ -628,7 +628,13 @@ handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka, return 0; } +#ifdef CONFIG_X86_32 #define NR_restart_syscall __NR_restart_syscall +#else /* !CONFIG_X86_32 */ +#define NR_restart_syscall \ + test_thread_flag(TIF_IA32) ? __NR_ia32_restart_syscall : __NR_restart_syscall +#endif /* CONFIG_X86_32 */ + /* * Note that 'init' is a special process: it doesn't get signals it doesn't * want to handle. Thus you cannot kill init even with a SIGKILL even by |