Modified Files:
authorKung Hsu <kung@cygnus>
Wed, 10 Aug 1994 17:37:56 +0000 (17:37 +0000)
committerKung Hsu <kung@cygnus>
Wed, 10 Aug 1994 17:37:56 +0000 (17:37 +0000)
ChangeLog remote-mips.c

        * remote-mips.c (mips_open): add code to handle baud rate.

gdb/ChangeLog
gdb/remote-mips.c

index 0c7397d666fed3b6dd87a5e12f0a542c7fcbdb02..2716e129011da8a9f059f3e6976b9e6815f0851d 100644 (file)
@@ -1,3 +1,7 @@
+Wed Aug 10 10:33:20 1994  Kung Hsu  (kung@mexican.cygnus.com)
+
+       * remote-mips.c (mips_open): add code to handle baud rate.
+
 Tue Aug  9 09:44:42 1994  Stu Grossman  (grossman@cygnus.com)
 
        * infrun.c (wait_for_inferior):  Call target_resume() upon
index 4b4ad2eb3fc26531166bb18e7a67d1fcf4b4f037..09ae553780aefd64b2f62f404f4618d3def2f95a 100644 (file)
@@ -1005,6 +1005,15 @@ device is attached to the target board (e.g., /dev/ttya).");
   if (mips_desc == (serial_t) NULL)
     perror_with_name (name);
 
+  if (baud_rate != -1)
+    {
+      if (SERIAL_SETBAUDRATE (mips_desc, baud_rate))
+        {
+          SERIAL_CLOSE (mips_desc);
+          perror_with_name (name);
+        }
+    }
+
   SERIAL_RAW (mips_desc);
 
   mips_is_open = 1;