diff options
author | Stu Grossman <grossman@cygnus> | 1995-03-07 09:03:37 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1995-03-07 09:03:37 +0000 |
commit | 85c8b135fe413021e644dbd69a56ae7abe455f2e (patch) | |
tree | f034a40857e4f3eff1176ea6664b8967e6674051 /gdb/ser-go32-para.c | |
parent | 7baea9460866303161d1598eddb93a936973ef1d (diff) | |
download | gdb-85c8b135fe413021e644dbd69a56ae7abe455f2e.zip gdb-85c8b135fe413021e644dbd69a56ae7abe455f2e.tar.gz gdb-85c8b135fe413021e644dbd69a56ae7abe455f2e.tar.bz2 |
* serial.h ser-go32.c ser-go32-para.c ser-mac.c ser-tcp.c
ser-unix.c: Add SERIAL_SETSTOPBITS to set the number of stopbits
(needed for IDP board?!?!?).
Diffstat (limited to 'gdb/ser-go32-para.c')
-rw-r--r-- | gdb/ser-go32-para.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/ser-go32-para.c b/gdb/ser-go32-para.c index 707398e..2167166 100644 --- a/gdb/ser-go32-para.c +++ b/gdb/ser-go32-para.c @@ -230,6 +230,14 @@ go32_setbaudrate (scb, rate) return 0; } +static int +go32_setstopbits (scb, num) + serial_t scb; + int num; +{ + return 0; +} + static void go32_close (scb) serial_t scb; @@ -253,6 +261,7 @@ static struct serial_ops go32_ops = go32_print_tty_state, go32_noflush_set_tty_state, go32_setbaudrate, + go32_setstopbits, }; void |