diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-24 17:18:19 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-24 17:18:19 +0000 |
commit | 48143d8a8f92fd69d95564516fd1b7cf122511b1 (patch) | |
tree | 60b6a07f9836b7885e6ee2cc2bfead197b554e2b /libc/sysdeps/linux/sh | |
parent | c3f6501060987d967a28495b009cd0da9da25252 (diff) |
fork/vfork weak in libc, strong in libpthread
Diffstat (limited to 'libc/sysdeps/linux/sh')
-rw-r--r-- | libc/sysdeps/linux/sh/vfork.S | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/sh/vfork.S b/libc/sysdeps/linux/sh/vfork.S index 5c6a356e6..a53d04a0b 100644 --- a/libc/sysdeps/linux/sh/vfork.S +++ b/libc/sysdeps/linux/sh/vfork.S @@ -32,11 +32,12 @@ and the process ID of the new process to the old process. */ .text -.globl vfork -.type vfork,@function +.globl __vfork +.hidden __vfork +.type __vfork,@function .align 4 -vfork: +__vfork: mov.w .L2, r3 trapa #0x10 mov r0, r1 @@ -106,7 +107,8 @@ vfork: .L3: .word __NR_fork -.size vfork, .-vfork +.size __vfork, .-__vfork +weak_alias(__vfork,vfork) libc_hidden_def(vfork) #include "syscall_error.S" |