summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1998-04-02 10:32:04 +0000
committermycroft <mycroft@NetBSD.org>1998-04-02 10:32:04 +0000
commit111c2f97a8d2c877e750ecced7203bb70c23da5e (patch)
tree83ef315dbc7e83c3e854808c36a1249fb41121f3 /gnu
parent6f197c5b08b24219dc30ae3fb58954e1f32c20f8 (diff)
Support higher baud rates.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/dist/gdb/ser-unix.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/dist/gdb/ser-unix.c b/gnu/dist/gdb/ser-unix.c
index a4a00e5d559..92a5d6e43a0 100644
--- a/gnu/dist/gdb/ser-unix.c
+++ b/gnu/dist/gdb/ser-unix.c
@@ -579,6 +579,15 @@ baudtab[] =
{9600, B9600},
{19200, B19200},
{38400, B38400},
+#ifdef __NetBSD__
+ {7200, B7200},
+ {14400, B14400},
+ {28800, B28800},
+ {57600, B57600},
+ {76800, B76800},
+ {115200, B115200},
+ {230400, B230400},
+#endif
{-1, -1},
};