diff options
author | davidxu <davidxu@FreeBSD.org> | 2007-12-20 04:32:28 +0000 |
---|---|---|
committer | davidxu <davidxu@FreeBSD.org> | 2007-12-20 04:32:28 +0000 |
commit | cd0acadf511dddc20ce56f096eb54b0b80d81ffb (patch) | |
tree | 802200c1a8ba9f3b4ba8557b7109306064be08fc /lib/libthr/thread | |
parent | 85788af52a5faf10ff1d44ac84dd51bb36da1212 (diff) | |
download | FreeBSD-src-cd0acadf511dddc20ce56f096eb54b0b80d81ffb.zip FreeBSD-src-cd0acadf511dddc20ce56f096eb54b0b80d81ffb.tar.gz |
Remove vfork() overloading, it is no longer needed.
Diffstat (limited to 'lib/libthr/thread')
-rw-r--r-- | lib/libthr/thread/thr_syscalls.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/libthr/thread/thr_syscalls.c b/lib/libthr/thread/thr_syscalls.c index 74a0950..4a0dd72 100644 --- a/lib/libthr/thread/thr_syscalls.c +++ b/lib/libthr/thread/thr_syscalls.c @@ -149,7 +149,6 @@ pid_t __wait3(int *, int, struct rusage *); pid_t __wait4(pid_t, int *, int, struct rusage *); ssize_t __write(int, const void *, size_t); ssize_t __writev(int, const struct iovec *, int); -int _vfork(void); __weak_reference(__accept, accept); @@ -529,14 +528,6 @@ ___usleep(useconds_t useconds) return (ret); } -__weak_reference(_vfork, vfork); - -int -_vfork(void) -{ - return (fork()); -} - __weak_reference(___wait, wait); pid_t |