File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 130
130
116 i386 sysinfo sys_sysinfo __ia32_compat_sys_sysinfo
131
131
117 i386 ipc sys_ipc __ia32_compat_sys_ipc
132
132
118 i386 fsync sys_fsync __ia32_sys_fsync
133
- 119 i386 sigreturn sys_sigreturn sys32_sigreturn
133
+ 119 i386 sigreturn sys_sigreturn __ia32_compat_sys_sigreturn
134
134
120 i386 clone sys_clone __ia32_compat_sys_x86_clone
135
135
121 i386 setdomainname sys_setdomainname __ia32_sys_setdomainname
136
136
122 i386 uname sys_newuname __ia32_sys_newuname
184
184
170 i386 setresgid sys_setresgid16 __ia32_sys_setresgid16
185
185
171 i386 getresgid sys_getresgid16 __ia32_sys_getresgid16
186
186
172 i386 prctl sys_prctl __ia32_sys_prctl
187
- 173 i386 rt_sigreturn sys_rt_sigreturn sys32_rt_sigreturn
187
+ 173 i386 rt_sigreturn sys_rt_sigreturn __ia32_compat_sys_rt_sigreturn
188
188
174 i386 rt_sigaction sys_rt_sigaction __ia32_compat_sys_rt_sigaction
189
189
175 i386 rt_sigprocmask sys_rt_sigprocmask __ia32_compat_sys_rt_sigprocmask
190
190
176 i386 rt_sigpending sys_rt_sigpending __ia32_compat_sys_rt_sigpending
Original file line number Diff line number Diff line change 21
21
#include <linux/personality.h>
22
22
#include <linux/compat.h>
23
23
#include <linux/binfmts.h>
24
+ #include <linux/syscalls.h>
24
25
#include <asm/ucontext.h>
25
26
#include <linux/uaccess.h>
26
27
#include <asm/fpu/internal.h>
@@ -118,7 +119,7 @@ static int ia32_restore_sigcontext(struct pt_regs *regs,
118
119
return err ;
119
120
}
120
121
121
- asmlinkage long sys32_sigreturn ( void )
122
+ COMPAT_SYSCALL_DEFINE0 ( sigreturn )
122
123
{
123
124
struct pt_regs * regs = current_pt_regs ();
124
125
struct sigframe_ia32 __user * frame = (struct sigframe_ia32 __user * )(regs -> sp - 8 );
@@ -144,7 +145,7 @@ asmlinkage long sys32_sigreturn(void)
144
145
return 0 ;
145
146
}
146
147
147
- asmlinkage long sys32_rt_sigreturn ( void )
148
+ COMPAT_SYSCALL_DEFINE0 ( rt_sigreturn )
148
149
{
149
150
struct pt_regs * regs = current_pt_regs ();
150
151
struct rt_sigframe_ia32 __user * frame ;
You can’t perform that action at this time.
0 commit comments