Mercurial > emacs
diff src/process.c @ 16220:02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Tue, 17 Sep 1996 03:43:54 +0000 |
| parents | 4aba36944749 |
| children | c1f19d8e5b80 |
line wrap: on
line diff
--- a/src/process.c Tue Sep 17 02:56:22 1996 +0000 +++ b/src/process.c Tue Sep 17 03:43:54 1996 +0000 @@ -73,12 +73,12 @@ #define NUMERIC_ADDR_ERROR (numeric_addr == -1) #endif -#if defined(BSD) || defined(STRIDE) +#if defined(BSD_SYSTEM) || defined(STRIDE) #include <sys/ioctl.h> #if !defined (O_NDELAY) && defined (HAVE_PTYS) && !defined(USG5) #include <fcntl.h> #endif /* HAVE_PTYS and no O_NDELAY */ -#endif /* BSD or STRIDE */ +#endif /* BSD_SYSTEM || STRIDE */ #ifdef BROKEN_O_NONBLOCK #undef O_NONBLOCK @@ -1334,7 +1334,7 @@ #ifdef BSD4_1 sighold (SIGCHLD); #else /* not BSD4_1 */ -#if defined (BSD) || defined (UNIPLUS) || defined (HPUX) +#if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX) sigsetmask (sigmask (SIGCHLD)); #else /* ordinary USG */ #if 0 @@ -1504,7 +1504,7 @@ #ifdef BSD4_1 sigrelse (SIGCHLD); #else /* not BSD4_1 */ -#if defined (BSD) || defined (UNIPLUS) || defined (HPUX) +#if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX) sigsetmask (SIGEMPTYMASK); #else /* ordinary USG */ #if 0 @@ -1585,7 +1585,7 @@ #ifdef BSD4_1 sigrelse (SIGCHLD); #else /* not BSD4_1 */ -#if defined (BSD) || defined (UNIPLUS) || defined (HPUX) +#if defined (BSD_SYSTEM) || defined (UNIPLUS) || defined (HPUX) sigsetmask (SIGEMPTYMASK); #else /* ordinary USG */ #if 0
