diff options
author | H. Peter Anvin <hpa@zytor.com> | 2012-02-19 17:48:01 (GMT) |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2012-02-20 20:48:49 (GMT) |
commit | 2c73ce734653f96542a070f3c3b3e3d1cd0fba02 (patch) | |
tree | ba16b98dae0ae8b1972e4843ba780af43bfc9674 /arch/x86/include | |
parent | bb2127240c5595ae4ef7115494f51e973692f64e (diff) | |
download | linux-2c73ce734653f96542a070f3c3b3e3d1cd0fba02.tar.xz |
x86-64, ia32: Drop sys32_rt_sigprocmask
On x86, the only difference between sys_rt_sigprocmask and
sys32_rt_sigprocmask is the alignment of the data structures.
However, x86 allows data accesses with arbitrary alignment, and
therefore there is no reason for this code to be different.
Reported-by: Gregory M. Lueck <gregory.m.lueck@intel.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/sys_ia32.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/x86/include/asm/sys_ia32.h b/arch/x86/include/asm/sys_ia32.h index cb23852..68da87b 100644 --- a/arch/x86/include/asm/sys_ia32.h +++ b/arch/x86/include/asm/sys_ia32.h @@ -36,8 +36,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); |