mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
* win32-low.c (handle_output_debug_string): Ignore event if not
waiting.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
|
||||
|
||||
* win32-low.c (handle_output_debug_string): Ignore event if not
|
||||
waiting.
|
||||
|
||||
2007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
|
||||
|
||||
* win32-arm-low.c (arm_wince_breakpoint): Fix typo.
|
||||
|
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user