|
@@ -51,8 +51,7 @@ long sys_cacheflush(unsigned long addr, unsigned long len,
|
|
|
|
|
|
#ifndef __tilegx__
|
|
|
/* mm/fault.c */
|
|
|
-long sys_cmpxchg_badaddr(unsigned long address, struct pt_regs *);
|
|
|
-long _sys_cmpxchg_badaddr(unsigned long address);
|
|
|
+long sys_cmpxchg_badaddr(unsigned long address);
|
|
|
#endif
|
|
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
@@ -63,15 +62,23 @@ long sys_truncate64(const char __user *path, loff_t length);
|
|
|
long sys_ftruncate64(unsigned int fd, loff_t length);
|
|
|
#endif
|
|
|
|
|
|
-/* These are the intvec*.S trampolines. */
|
|
|
-long _sys_sigaltstack(const stack_t __user *, stack_t __user *);
|
|
|
-long _sys_rt_sigreturn(void);
|
|
|
-long _sys_clone(unsigned long clone_flags, unsigned long newsp,
|
|
|
+/* Provide versions of standard syscalls that use current_pt_regs(). */
|
|
|
+long sys_clone(unsigned long clone_flags, unsigned long newsp,
|
|
|
void __user *parent_tid, void __user *child_tid);
|
|
|
long sys_execve(const char __user *filename,
|
|
|
const char __user *const __user *argv,
|
|
|
const char __user *const __user *envp);
|
|
|
+long sys_rt_sigreturn(void);
|
|
|
+long sys_sigaltstack(const stack_t __user *, stack_t __user *);
|
|
|
+#define sys_clone sys_clone
|
|
|
#define sys_execve sys_execve
|
|
|
+#define sys_rt_sigreturn sys_rt_sigreturn
|
|
|
+#define sys_sigaltstack sys_sigaltstack
|
|
|
+
|
|
|
+/* These are the intvec*.S trampolines. */
|
|
|
+long _sys_rt_sigreturn(void);
|
|
|
+long _sys_clone(unsigned long clone_flags, unsigned long newsp,
|
|
|
+ void __user *parent_tid, void __user *child_tid);
|
|
|
|
|
|
#include <asm-generic/syscalls.h>
|
|
|
|