diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-08-11 22:36:11 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-08-11 22:36:11 +0000 |
commit | 71f8450fce910b1e3aa8bb17c61b10ce4a08b52f (patch) | |
tree | 2f384de76205a13bcaa0631644e429f44ff24ae0 /libc/sysdeps/linux/i386/clone.S | |
parent | 4fd42eddbbb74107c6af4ff4270bfe3b8d6c56fe (diff) |
jump straight to __syscall_error
Diffstat (limited to 'libc/sysdeps/linux/i386/clone.S')
-rw-r--r-- | libc/sysdeps/linux/i386/clone.S | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/libc/sysdeps/linux/i386/clone.S b/libc/sysdeps/linux/i386/clone.S index fbbb7d4cf..259982230 100644 --- a/libc/sysdeps/linux/i386/clone.S +++ b/libc/sysdeps/linux/i386/clone.S @@ -51,19 +51,19 @@ __clone: /* no NULL function pointers */ movl FUNC(%esp),%ecx #ifdef __PIC__ - jecxz __error + jecxz __syscall_error #else testl %ecx,%ecx - jz __error + jz __syscall_error #endif /* no NULL stack pointers */ movl STACK(%esp),%ecx #ifdef __PIC__ - jecxz __error + jecxz __syscall_error #else testl %ecx,%ecx - jz __error + jz __syscall_error #endif /* Insert the argument onto the new stack. Make sure the new @@ -96,7 +96,7 @@ __clone: popl %ebx test %eax,%eax - jl __error + jl __syscall_error jz .Lthread_start ret @@ -114,9 +114,6 @@ __clone: movl $__NR_exit, %eax int $0x80 -__error: - jmp __syscall_error - .size __clone,.-__clone .weak clone |