summaryrefslogtreecommitdiffstats
path: root/arch/x86/um/syscalls_32.c
diff options
context:
space:
mode:
authorAl Viro2012-10-23 04:34:11 +0200
committerAl Viro2012-11-29 04:13:44 +0100
commit1d4b4b2994b5fc208963c0b795291f8c1f18becf (patch)
treebefe27a3e2abc333b5bd81ee7381e4c5541f543f /arch/x86/um/syscalls_32.c
parentget rid of pt_regs argument of ->load_binary() (diff)
downloadkernel-qcow2-linux-1d4b4b2994b5fc208963c0b795291f8c1f18becf.tar.gz
kernel-qcow2-linux-1d4b4b2994b5fc208963c0b795291f8c1f18becf.tar.xz
kernel-qcow2-linux-1d4b4b2994b5fc208963c0b795291f8c1f18becf.zip
x86, um: switch to generic fork/vfork/clone
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/x86/um/syscalls_32.c')
-rw-r--r--arch/x86/um/syscalls_32.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/x86/um/syscalls_32.c b/arch/x86/um/syscalls_32.c
index db444c7218fe..e8bcea99acdb 100644
--- a/arch/x86/um/syscalls_32.c
+++ b/arch/x86/um/syscalls_32.c
@@ -6,21 +6,6 @@
#include <linux/syscalls.h>
#include <sysdep/syscalls.h>
-/*
- * The prototype on i386 is:
- *
- * int clone(int flags, void * child_stack, int * parent_tidptr, struct user_desc * newtls
- *
- * and the "newtls" arg. on i386 is read by copy_thread directly from the
- * register saved on the stack.
- */
-long i386_clone(unsigned long clone_flags, unsigned long newsp,
- int __user *parent_tid, void *newtls, int __user *child_tid)
-{
- return sys_clone(clone_flags, newsp, parent_tid, child_tid);
-}
-
-
long sys_sigaction(int sig, const struct old_sigaction __user *act,
struct old_sigaction __user *oact)
{