# HG changeset patch # User Richard M. Stallman # Date 827670777 0 # Node ID cb986696ec031f28a17508b9da2020f84d838997 # Parent c51cef393dae8a2f5e3bd67def6c7bb307704bda (setpgrp): New macro. (BSD_PGRPS): Defined. diff -r c51cef393dae -r cb986696ec03 src/s/gnu-linux.h --- 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))