Mercurial > emacs
changeset 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 | c51cef393dae |
children | c001b28bf068 |
files | src/s/gnu-linux.h |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
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))