From: Richard M. Stallman Date: Sun, 24 Mar 1996 12:32:57 +0000 (+0000) Subject: (setpgrp): New macro. X-Git-Tag: emacs-19.34~989 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3743c30c5ee8e6418393fc49baf99f044e023f3f;p=emacs.git (setpgrp): New macro. (BSD_PGRPS): Defined. --- diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h index ba868bcd645..a024791eb9e 100644 --- a/src/s/gnu-linux.h +++ b/src/s/gnu-linux.h @@ -282,3 +282,8 @@ Boston, MA 02111-1307, USA. */ 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))