aboutsummaryrefslogtreecommitdiffstats
path: root/src/s/gnu-linux.h
diff options
context:
space:
mode:
authorRichard M. Stallman1996-03-24 12:32:57 +0000
committerRichard M. Stallman1996-03-24 12:32:57 +0000
commit3743c30c5ee8e6418393fc49baf99f044e023f3f (patch)
tree9d0a9534332e0fdcfc0ec97773e4f192b09d2882 /src/s/gnu-linux.h
parent1b96639086a32d97510457ab856c3f5f2640fd53 (diff)
downloademacs-3743c30c5ee8e6418393fc49baf99f044e023f3f.tar.gz
emacs-3743c30c5ee8e6418393fc49baf99f044e023f3f.zip
(setpgrp): New macro.
(BSD_PGRPS): Defined.
Diffstat (limited to 'src/s/gnu-linux.h')
-rw-r--r--src/s/gnu-linux.h5
1 files changed, 5 insertions, 0 deletions
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. */
282 and the function definitions in libc. So turn this off. */ 282 and the function definitions in libc. So turn this off. */
283/* #define REGEXP_IN_LIBC */ 283/* #define REGEXP_IN_LIBC */
284 284
285/* Use BSD process groups, but use setpgid() instead of setpgrp() to
286 actually set a process group. */
287
288#define BSD_PGRPS
289#define setpgrp(pid,pgid) setpgid((pid),(pgid))