* win32-low.c (handle_output_debug_string): Ignore event if not
[deliverable/binutils-gdb.git] / gdb / gdbserver / win32-low.c
index 736d85e05b0aad0cfc855bbb48bb96ade50dd6e5..161cadf69044110bd7385939fd3d9c46b9f743a7 100644 (file)
@@ -567,7 +567,15 @@ handle_output_debug_string (struct target_waitstatus *ourstatus)
     }
 
   if (strncmp (s, "cYg", 3) != 0)
-    monitor_output (s);
+    {
+      if (!server_waiting)
+       {
+         OUTMSG2(("%s", s));
+         return;
+       }
+
+      monitor_output (s);
+    }
 #undef READ_BUFFER_LEN
 }
 
This page took 0.024752 seconds and 4 git commands to generate.