Remove vfork() overloading, it is no longer needed.
This commit is contained in:
parent
45310fdb5d
commit
06c8eb55ce
@ -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;
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user