diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-02-11 06:31:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-02-11 06:31:57 +0000 |
commit | e5ffa64a7003b5886c85c6434ced62ebc468b40d (patch) | |
tree | 562631f19dcbb5479eab1336d1fbc94daac53571 /linuxthreads/sysdeps/unix/sysv/linux/sh/vfork.S | |
parent | d9dd121ebe3e983e450c7189cf06dcf000f76178 (diff) | |
download | glibc-e5ffa64a7003b5886c85c6434ced62ebc468b40d.tar.gz |
Update.
2003-02-10 Ulrich Drepper <drepper@redhat.com>
* elf/Makefile (check-textrel-CFLAGS): Pass _XOPEN_SOURCE and
_BSD_SOURCE to compiler.
* elf/check-textrel.c (SWAP): Add parenthesis to avoid warnings.
Patches by Alan Modra.
Diffstat (limited to 'linuxthreads/sysdeps/unix/sysv/linux/sh/vfork.S')
-rw-r--r-- | linuxthreads/sysdeps/unix/sysv/linux/sh/vfork.S | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/sh/vfork.S b/linuxthreads/sysdeps/unix/sysv/linux/sh/vfork.S index b118ca34d7..07589c162b 100644 --- a/linuxthreads/sysdeps/unix/sysv/linux/sh/vfork.S +++ b/linuxthreads/sysdeps/unix/sysv/linux/sh/vfork.S @@ -30,7 +30,7 @@ ENTRY (__vfork) mov.l .Lpthread_func, r0 mov.l @(r0,r12), r0 #else - mov.l .Lpthread_fork, r0 + mov.l .Lpthread_create, r0 #endif tst r0, r0 bf .Lhidden_fork @@ -53,8 +53,9 @@ ENTRY (__vfork) .Lpthread_func: .long __libc_pthread_functions@GOTOFF #else -.Lpthread_fork: - .long __pthread_fork +.Lpthread_create: + .weak pthread_create + .long pthread_create #endif .Lhidden_fork: |