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/e1/vfork.c | |
parent | c3f6501060987d967a28495b009cd0da9da25252 (diff) |
fork/vfork weak in libc, strong in libpthread
Diffstat (limited to 'libc/sysdeps/linux/e1/vfork.c')
-rw-r--r-- | libc/sysdeps/linux/e1/vfork.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/e1/vfork.c b/libc/sysdeps/linux/e1/vfork.c index 36f176acb..ceb8d8263 100644 --- a/libc/sysdeps/linux/e1/vfork.c +++ b/libc/sysdeps/linux/e1/vfork.c @@ -8,7 +8,8 @@ #include <sys/syscall.h> #include <errno.h> +#define __NR___vfork __NR_vfork +attribute_hidden _syscall0(pid_t, __vfork); libc_hidden_proto(vfork) - -_syscall0(pid_t, vfork); +weak_alias(__vfork,vfork) libc_hidden_def(vfork) |