Remove vfork() overloading, it is no longer needed.

This commit is contained in:
David Xu 2007-12-20 04:32:28 +00:00
parent 45310fdb5d
commit 06c8eb55ce
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=174805
2 changed files with 0 additions and 11 deletions

View File

@ -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;

View File

@ -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