diff options
author | Al Viro | 2012-10-21 15:57:32 -0400 |
---|---|---|
committer | Al Viro | 2012-11-28 22:36:45 -0500 |
commit | 584271bcb45b50027c8d87b51634750780c92437 (patch) | |
tree | ae0fa71904cfc2d3e7b876f4be03240556cd381a /arch/avr32/kernel/syscall-stubs.S | |
parent | 9ac08002130b591d0f2ee035aa9062f84f2f15cb (diff) |
avr32: sanitize copy_thread(), switch to generic fork/vfork/clone, kill wrappers
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/avr32/kernel/syscall-stubs.S')
-rw-r--r-- | arch/avr32/kernel/syscall-stubs.S | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/avr32/kernel/syscall-stubs.S b/arch/avr32/kernel/syscall-stubs.S index 285a61b9194e..275aab9731fd 100644 --- a/arch/avr32/kernel/syscall-stubs.S +++ b/arch/avr32/kernel/syscall-stubs.S @@ -32,24 +32,6 @@ __sys_rt_sigreturn: mov r12, sp rjmp sys_rt_sigreturn - .global __sys_fork - .type __sys_fork,@function -__sys_fork: - mov r12, sp - rjmp sys_fork - - .global __sys_clone - .type __sys_clone,@function -__sys_clone: - mov r8, sp - rjmp sys_clone - - .global __sys_vfork - .type __sys_vfork,@function -__sys_vfork: - mov r12, sp - rjmp sys_vfork - .global __sys_mmap2 .type __sys_mmap2,@function __sys_mmap2: |