* ser-unix.c (gdb_setpgid): Pass our pid, not 0, to setpgid.

This commit is contained in:
Jim Kingdon 1993-07-29 19:02:08 +00:00
parent 4432b9f9ff
commit d4c22c5233
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,7 @@
Thu Jul 29 12:09:46 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* ser-unix.c (gdb_setpgid): Pass our pid, not 0, to setpgid.
* remote-monitor.c (_initialize_monitor): Comment out use of
connect_command, since connect_command itself is commented out.

View File

@ -680,7 +680,10 @@ gdb_setpgid ()
{
#if defined (NEED_POSIX_SETPGID) || defined (HAVE_TERMIOS)
/* Do all systems with termios have setpgid? I hope so. */
retval = setpgid (0, 0);
/* setpgid (0, 0) is supposed to work and mean the same thing as
this, but on Ultrix 4.2A it fails with EPERM (and
setpgid (getpid (), getpid ()) succeeds). */
retval = setpgid (getpid (), getpid ());
#else
#if defined (TIOCGPGRP)
#if defined(USG) && !defined(SETPGRP_ARGS)