summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-03-24 12:32:57 +0000
committerRichard M. Stallman <rms@gnu.org>1996-03-24 12:32:57 +0000
commite3ce5efbbc9d51de4fe482e7e7aec8ceb738e925 (patch)
tree2a144755c4df7db72dc43557744df956e1bb6aa2 /src
parent56ad6904e7ec5a052a54936da4ba9a17b1c00590 (diff)
downloademacs-e3ce5efbbc9d51de4fe482e7e7aec8ceb738e925.tar.gz
(setpgrp): New macro.
(BSD_PGRPS): Defined.
Diffstat (limited to 'src')
-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. */
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))