diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-09 00:00:56 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-09 00:00:56 +0000 |
commit | c18b613acd0704c91a82ccb13e1bb7f3c64136d6 (patch) | |
tree | ebcdd7f27e50e87fd99d2084dcd63ed3816185dd /gdb/fork-child.c | |
parent | a71c0593c6f836e5e6607619209938dff0e7a093 (diff) | |
download | gdb-c18b613acd0704c91a82ccb13e1bb7f3c64136d6.zip gdb-c18b613acd0704c91a82ccb13e1bb7f3c64136d6.tar.gz gdb-c18b613acd0704c91a82ccb13e1bb7f3c64136d6.tar.bz2 |
* inflow.c: Remove unused includes of sys/param.h and sys/types.h.
* inflow.c, ser-unix.c, ser-go32.c, ser-tcp.c, serial.h,
terminal.h, fork-child.c, main.c, utils.c: Move all the process
group stuff back to inflow.c and terminal.h; that's a better place
for it and fixes problems with trying to get/set the process group
of a tty we're doing remote debugging on.
* terminal.h: Skip the redefines and includes if HAVE_TERMIOS.
Diffstat (limited to 'gdb/fork-child.c')
-rw-r--r-- | gdb/fork-child.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/fork-child.c b/gdb/fork-child.c index 905dd0c..d8cf886 100644 --- a/gdb/fork-child.c +++ b/gdb/fork-child.c @@ -24,8 +24,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "target.h" #include "wait.h" #include "gdbcore.h" -#include "serial.h" /* For job_control. */ -#include "terminal.h" /* For new_tty */ +#include "terminal.h" #include <signal.h> |