From: Richard M. Stallman Date: Sun, 4 Feb 1996 21:34:21 +0000 (+0000) Subject: (vfork): Define as fork. X-Git-Tag: emacs-19.34~1367 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=22fcc83edf1a7599a8a9d9302e3d2de395ca6508;p=emacs.git (vfork): Define as fork. --- diff --git a/src/s/freebsd.h b/src/s/freebsd.h index 772a760900b..9a32b9bf57d 100644 --- a/src/s/freebsd.h +++ b/src/s/freebsd.h @@ -88,3 +88,7 @@ #include #endif #define WRETCODE(w) (_W_INT(w) >> 8) + +/* Needed to avoid hanging when child process writes an error message + and exits -- enami tsugutomo . */ +#define vfork fork diff --git a/src/s/netbsd.h b/src/s/netbsd.h index b6535665724..4ca4b4d6885 100644 --- a/src/s/netbsd.h +++ b/src/s/netbsd.h @@ -61,3 +61,7 @@ #define NO_MATHERR #define AMPERSAND_FULL_NAME + +/* Needed to avoid hanging when child process writes an error message + and exits -- enami tsugutomo . */ +#define vfork fork