mirror of https://gitee.com/openkylin/linux.git
x86: signal: change type of paramter for sys_rt_sigreturn()
Impact: cleanup on 32-bit Peter pointed this parameter can be changed. Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
5ceb40da9b
commit
4217458daf
|
@ -33,7 +33,7 @@ asmlinkage int sys_sigaction(int, const struct old_sigaction __user *,
|
||||||
struct old_sigaction __user *);
|
struct old_sigaction __user *);
|
||||||
asmlinkage int sys_sigaltstack(unsigned long);
|
asmlinkage int sys_sigaltstack(unsigned long);
|
||||||
asmlinkage unsigned long sys_sigreturn(unsigned long);
|
asmlinkage unsigned long sys_sigreturn(unsigned long);
|
||||||
asmlinkage int sys_rt_sigreturn(unsigned long);
|
asmlinkage int sys_rt_sigreturn(struct pt_regs);
|
||||||
|
|
||||||
/* kernel/ioport.c */
|
/* kernel/ioport.c */
|
||||||
asmlinkage long sys_iopl(unsigned long);
|
asmlinkage long sys_iopl(unsigned long);
|
||||||
|
|
|
@ -642,11 +642,9 @@ static long do_rt_sigreturn(struct pt_regs *regs)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_X86_32
|
#ifdef CONFIG_X86_32
|
||||||
asmlinkage int sys_rt_sigreturn(unsigned long __unused)
|
asmlinkage int sys_rt_sigreturn(struct pt_regs regs)
|
||||||
{
|
{
|
||||||
struct pt_regs *regs = (struct pt_regs *)&__unused;
|
return do_rt_sigreturn(®s);
|
||||||
|
|
||||||
return do_rt_sigreturn(regs);
|
|
||||||
}
|
}
|
||||||
#else /* !CONFIG_X86_32 */
|
#else /* !CONFIG_X86_32 */
|
||||||
asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
|
asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
|
||||||
|
|
Loading…
Reference in New Issue