aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-10-09 00:00:56 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-10-09 00:00:56 +0000
commitc18b613acd0704c91a82ccb13e1bb7f3c64136d6 (patch)
treeebcdd7f27e50e87fd99d2084dcd63ed3816185dd
parenta71c0593c6f836e5e6607619209938dff0e7a093 (diff)
downloadfsf-binutils-gdb-c18b613acd0704c91a82ccb13e1bb7f3c64136d6.zip
fsf-binutils-gdb-c18b613acd0704c91a82ccb13e1bb7f3c64136d6.tar.gz
fsf-binutils-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.
-rw-r--r--gdb/ChangeLog13
-rw-r--r--gdb/fork-child.c3
2 files changed, 7 insertions, 9 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 93f15d9..c47c582 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 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>