Mercurial > emacs
diff src/s/gnu-linux.h @ 14871:cb986696ec03
(setpgrp): New macro.
(BSD_PGRPS): Defined.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sun, 24 Mar 1996 12:32:57 +0000 |
| parents | bc1d2478d392 |
| children | 31ec812fd659 |
line wrap: on
line diff
--- a/src/s/gnu-linux.h Sun Mar 24 02:05:38 1996 +0000 +++ b/src/s/gnu-linux.h Sun Mar 24 12:32:57 1996 +0000 @@ -282,3 +282,8 @@ and the function definitions in libc. So turn this off. */ /* #define REGEXP_IN_LIBC */ +/* Use BSD process groups, but use setpgid() instead of setpgrp() to + actually set a process group. */ + +#define BSD_PGRPS +#define setpgrp(pid,pgid) setpgid((pid),(pgid))
