(setpgrp): New macro.
authorRichard M. Stallman <rms@gnu.org>
Sun, 24 Mar 1996 12:32:57 +0000 (12:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 24 Mar 1996 12:32:57 +0000 (12:32 +0000)
(BSD_PGRPS): Defined.

src/s/gnu-linux.h

index ba868bc..a024791 100644 (file)
@@ -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))