From c18b613acd0704c91a82ccb13e1bb7f3c64136d6 Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Sat, 9 Oct 1993 00:00:56 +0000 Subject: [PATCH] * 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. --- gdb/ChangeLog | 13 ++++++------- gdb/fork-child.c | 3 +-- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 93f15d91874..c47c5821561 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -6,13 +6,14 @@ Fri Oct 8 15:54:06 1993 Fred Fish (fnf@deneb.cygnus.com) Fri Oct 8 14:56:21 1993 Jim Kingdon (kingdon@lioth.cygnus.com) - * inflow.c: Remove unused includes of sys/param.h, etc. + * 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: Move all the process group stuff back to inflow.c; - 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 redefine crap if HAVE_TERMIOS. + 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. * findvar.c, value.h (symbol_read_needs_frame): New function. * c-exp.y, m2-exp.y: Call it instead of having our own switch on @@ -293,7 +294,6 @@ Wed Sep 29 10:52:19 1993 Kung Hsu (kung@cygnus.com) * c-valprint.c: to fix virtual table print bug (pr2695). ->>>>>>> 1.1795 Wed Sep 29 10:52:19 1993 Jim Kingdon (kingdon@lioth.cygnus.com) * target.c (target_detach): Call generic_mourn_inferior. @@ -387,7 +387,6 @@ Mon Sep 27 10:22:37 1993 Jim Kingdon (kingdon@lioth.cygnus.com) * remote-udi.c (udi_mourn): Don't pop target. ->>>>>>> 1.1783 Fri Sep 24 17:25:41 1993 Stu Grossman (grossman at cygnus.com) * corelow.c: Add multi thread/process support for core files with diff --git a/gdb/fork-child.c b/gdb/fork-child.c index 905dd0c8b54..d8cf8860c18 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 -- 2.30.2