diff options
Diffstat (limited to 'linuxthreads/sysdeps/unix/sysv/linux/i386')
-rw-r--r-- | linuxthreads/sysdeps/unix/sysv/linux/i386/vfork.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/i386/vfork.S b/linuxthreads/sysdeps/unix/sysv/linux/i386/vfork.S index 95df1330dd..c7a120d239 100644 --- a/linuxthreads/sysdeps/unix/sysv/linux/i386/vfork.S +++ b/linuxthreads/sysdeps/unix/sysv/linux/i386/vfork.S @@ -40,8 +40,8 @@ ENTRY (__vfork) addl $_GLOBAL_OFFSET_TABLE_, %ecx cmpl $0, __libc_pthread_functions@GOTOFF(%ecx) # else - .weak __pthread_fork - movl $__pthread_fork, %eax + .weak pthread_create + movl $pthread_create, %eax testl %eax, %eax # endif jne HIDDEN_JUMPTARGET (__fork) |