diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-21 23:54:27 +0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-11-29 07:13:54 +0400 |
commit | 38a61b6b4a45ec8c82c75403848e1c579113c3c5 (patch) | |
tree | 140ebeb63daf0a526a0a3ba91cd53991681e0ffe /arch/arm/kernel/entry-common.S | |
parent | 1d4b4b2994b5fc208963c0b795291f8c1f18becf (diff) | |
download | linux-38a61b6b4a45ec8c82c75403848e1c579113c3c5.tar.xz |
arm: switch to generic fork/vfork/clone
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel/entry-common.S')
-rw-r--r-- | arch/arm/kernel/entry-common.S | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/arch/arm/kernel/entry-common.S b/arch/arm/kernel/entry-common.S index 34711757ba59..88a07feaa05f 100644 --- a/arch/arm/kernel/entry-common.S +++ b/arch/arm/kernel/entry-common.S @@ -510,22 +510,6 @@ sys_syscall: b sys_ni_syscall ENDPROC(sys_syscall) -sys_fork_wrapper: - add r0, sp, #S_OFF - b sys_fork -ENDPROC(sys_fork_wrapper) - -sys_vfork_wrapper: - add r0, sp, #S_OFF - b sys_vfork -ENDPROC(sys_vfork_wrapper) - -sys_clone_wrapper: - add ip, sp, #S_OFF - str ip, [sp, #4] - b sys_clone -ENDPROC(sys_clone_wrapper) - sys_sigreturn_wrapper: add r0, sp, #S_OFF mov why, #0 @ prevent syscall restart handling |