* objdump.c (usage): Mention --stabs.
[deliverable/binutils-gdb.git] / gdb / ser-go32.c
index ff1bdf119307aeaffa7082b81786a87b18ac7a7c..7d0ec700300f0b15ba60c1afceba28b491764689 100644 (file)
@@ -267,10 +267,9 @@ go32_open (scb, name)
 }
 
 static int
-go32_flush_output (scb)
+go32_noop (scb)
      serial_t scb;
 {
-  /* No need to flush, because there is no buffering.  */
   return 0;
 }
 
@@ -378,7 +377,9 @@ static struct serial_ops go32_ops =
   go32_close,
   go32_readchar,
   go32_write,
-  go32_flush_output,
+  go32_noop, /* flush output */
+  go32_noop, /* flush input */
+  go32_noop, /* send break -- currently used only for nindy */
   go32_raw,
   go32_get_tty_state,
   go32_set_tty_state,
@@ -395,8 +396,9 @@ gdb_setpgid ()
   return 0;
 }
 
+int job_control = 0;
+
 _initialize_ser_go32 ()
 {
-  job_control = 0;
   serial_add_interface (&go32_ops);
 }
This page took 0.027111 seconds and 4 git commands to generate.