aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Xu <davidxu@FreeBSD.org>2007-12-20 04:32:28 +0000
committerDavid Xu <davidxu@FreeBSD.org>2007-12-20 04:32:28 +0000
commit06c8eb55ceb11e005252eb355d52371d2d0c3154 (patch)
tree802200c1a8ba9f3b4ba8557b7109306064be08fc /lib
parent45310fdb5d71ebbe889418aea0be1158bf5cfaa5 (diff)
Notes
Diffstat (limited to 'lib')
-rw-r--r--lib/libthr/pthread.map2
-rw-r--r--lib/libthr/thread/thr_syscalls.c9
2 files changed, 0 insertions, 11 deletions
diff --git a/lib/libthr/pthread.map b/lib/libthr/pthread.map
index 123fdd940a20..c6e146b6dafe 100644
--- a/lib/libthr/pthread.map
+++ b/lib/libthr/pthread.map
@@ -169,7 +169,6 @@ global:
system;
tcdrain;
usleep;
- vfork;
wait;
wait3;
wait4;
@@ -366,7 +365,6 @@ global:
_spinlock;
_spinlock_debug;
_spinunlock;
- _vfork;
/* Debugger needs these. */
_libthr_debug;
diff --git a/lib/libthr/thread/thr_syscalls.c b/lib/libthr/thread/thr_syscalls.c
index 74a095010029..4a0dd729bf91 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