1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-01 09:51:22 -08:00

(vfork) [!HAVE_VFORK]: Removed.

This commit is contained in:
Gerd Moellmann 2000-02-16 00:36:27 +00:00
parent 41bc75e63c
commit b49cb76457
2 changed files with 5 additions and 15 deletions

View file

@ -1,9 +1,13 @@
2000-02-16 Gerd Moellmann <gerd@gnu.org>
* sysdep.c (vfork) [!HAVE_VFORK]: Removed.
2000-02-15 Gerd Moellmann <gerd@gnu.org>
* s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN): Define.
* process.c (send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
Workaround for FreeBSD bug. Flush output queue after EAGAIN in
Workaround for FreeBSD bug. Clear output queue after EAGAIN in
write(2).
2000-02-15 Richard M. Stallman <rms@gnu.org>

View file

@ -3291,20 +3291,6 @@ emacs_write (fildes, buf, nbyte)
return (bytes_written);
}
#ifndef HAVE_VFORK
#ifndef WINDOWSNT
/*
* Substitute fork for vfork on USG flavors.
*/
VFORK_RETURN_TYPE
vfork ()
{
return (fork ());
}
#endif /* not WINDOWSNT */
#endif /* not HAVE_VFORK */
#ifdef USG
/*
* All of the following are for USG.