diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-03-24 12:32:57 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-03-24 12:32:57 +0000 |
commit | e3ce5efbbc9d51de4fe482e7e7aec8ceb738e925 (patch) | |
tree | 2a144755c4df7db72dc43557744df956e1bb6aa2 /src/s/gnu-linux.h | |
parent | 56ad6904e7ec5a052a54936da4ba9a17b1c00590 (diff) | |
download | emacs-e3ce5efbbc9d51de4fe482e7e7aec8ceb738e925.tar.gz |
(setpgrp): New macro.
(BSD_PGRPS): Defined.
Diffstat (limited to 'src/s/gnu-linux.h')
-rw-r--r-- | src/s/gnu-linux.h | 5 |
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)) |