diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-08 22:18:27 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-08 22:18:27 +0000 |
commit | a14a8fad360ddc983045a94621380761fa30721d (patch) | |
tree | b64070b1c3b4cc2823a3d2c3f6c2ca00b80c039d /gdb/ser-tcp.c | |
parent | 5357f1287d574310c08a9e54e8b903f9571d4129 (diff) | |
download | gdb-a14a8fad360ddc983045a94621380761fa30721d.zip gdb-a14a8fad360ddc983045a94621380761fa30721d.tar.gz 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-tcp.c')
-rw-r--r-- | gdb/ser-tcp.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/ser-tcp.c b/gdb/ser-tcp.c index 6688628..c038149 100644 --- a/gdb/ser-tcp.c +++ b/gdb/ser-tcp.c @@ -260,15 +260,6 @@ tcp_setbaudrate(scb, rate) } static int -tcp_set_process_group (scb, ttystate, group) - serial_t scb; - serial_ttystate ttystate; - int group; -{ - return 0; -} - -static int tcp_write(scb, str, len) serial_t scb; const char *str; @@ -316,7 +307,6 @@ static struct serial_ops tcp_ops = tcp_print_tty_state, tcp_noflush_set_tty_state, tcp_setbaudrate, - tcp_set_process_group }; void |