diff options
| author | Ingo Molnar <mingo@elte.hu> | 2012-03-13 05:54:39 +0100 | 
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2012-03-13 05:54:41 +0100 | 
| commit | e898c6706869fdcbd68b1e7fb0ac7461d98710fe (patch) | |
| tree | 28054da88ddda324f78f27083b14328113941fbc /arch/x86/include/asm/sys_ia32.h | |
| parent | c94082656dac74257f63e91f78d5d458ac781fa5 (diff) | |
| parent | 55283e2537714f9370c4ab847d170acf223daf90 (diff) | |
| download | olio-linux-3.10-e898c6706869fdcbd68b1e7fb0ac7461d98710fe.tar.xz olio-linux-3.10-e898c6706869fdcbd68b1e7fb0ac7461d98710fe.zip  | |
Merge branch 'x86/x32' into x86/cleanups
Merge reason: We are going to merge a dependent patch.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/sys_ia32.h')
| -rw-r--r-- | arch/x86/include/asm/sys_ia32.h | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/x86/include/asm/sys_ia32.h b/arch/x86/include/asm/sys_ia32.h index cb238526a9f..3fda9db4881 100644 --- a/arch/x86/include/asm/sys_ia32.h +++ b/arch/x86/include/asm/sys_ia32.h @@ -10,6 +10,8 @@  #ifndef _ASM_X86_SYS_IA32_H  #define _ASM_X86_SYS_IA32_H +#ifdef CONFIG_COMPAT +  #include <linux/compiler.h>  #include <linux/linkage.h>  #include <linux/types.h> @@ -36,8 +38,6 @@ asmlinkage long sys32_rt_sigaction(int, struct sigaction32 __user *,  				   struct sigaction32 __user *, unsigned int);  asmlinkage long sys32_sigaction(int, struct old_sigaction32 __user *,  				struct old_sigaction32 __user *); -asmlinkage long sys32_rt_sigprocmask(int, compat_sigset_t __user *, -				     compat_sigset_t __user *, unsigned int);  asmlinkage long sys32_alarm(unsigned int);  asmlinkage long sys32_waitpid(compat_pid_t, unsigned int *, int); @@ -83,4 +83,7 @@ asmlinkage long sys32_ipc(u32, int, int, int, compat_uptr_t, u32);  asmlinkage long sys32_fanotify_mark(int, unsigned int, u32, u32, int,  				    const char __user *); + +#endif /* CONFIG_COMPAT */ +  #endif /* _ASM_X86_SYS_IA32_H */  |