aboutsummaryrefslogtreecommitdiff
path: root/gdb/ser-go32.c
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-10-08 22:18:27 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-10-08 22:18:27 +0000
commita14a8fad360ddc983045a94621380761fa30721d (patch)
treeb64070b1c3b4cc2823a3d2c3f6c2ca00b80c039d /gdb/ser-go32.c
parent5357f1287d574310c08a9e54e8b903f9571d4129 (diff)
downloadfsf-binutils-gdb-a14a8fad360ddc983045a94621380761fa30721d.zip
fsf-binutils-gdb-a14a8fad360ddc983045a94621380761fa30721d.tar.gz
fsf-binutils-gdb-a14a8fad360ddc983045a94621380761fa30721d.tar.bz2
* inflow.c: Remove unused includes of sys/param.h, etc.
* 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.
Diffstat (limited to 'gdb/ser-go32.c')
-rw-r--r--gdb/ser-go32.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/gdb/ser-go32.c b/gdb/ser-go32.c
index 7d0ec70..e77fd56 100644
--- a/gdb/ser-go32.c
+++ b/gdb/ser-go32.c
@@ -344,15 +344,6 @@ go32_setbaudrate (scb, rate)
}
static int
-go32_set_process_group (scb, ttystate, group)
- serial_t scb;
- serial_ttystate ttystate;
- int group;
-{
- return 0;
-}
-
-static int
go32_write (scb, str, len)
serial_t scb;
const char *str;
@@ -386,18 +377,8 @@ static struct serial_ops go32_ops =
go32_print_tty_state,
go32_noflush_set_tty_state,
go32_setbaudrate,
- go32_set_process_group
};
-/* There is never job control on go32. */
-int
-gdb_setpgid ()
-{
- return 0;
-}
-
-int job_control = 0;
-
_initialize_ser_go32 ()
{
serial_add_interface (&go32_ops);