mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-18 12:24:38 +08:00
* ser-unix.c (gdb_setpgid): Pass our pid, not 0, to setpgid.
This commit is contained in:
parent
4432b9f9ff
commit
d4c22c5233
@ -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.
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user