* remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.

This commit is contained in:
Tom Tromey 2012-07-30 17:16:10 +00:00
parent db7c7ead66
commit 728400d769
2 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2012-07-30 Tom Tromey <tromey@redhat.com>
* remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
2012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
* arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not

View File

@ -955,10 +955,6 @@ gdb_os_poll_quit (host_callback *p)
quit_flag = 0; /* we've stolen it */
return 1;
}
else if (immediate_quit)
{
return 1;
}
return 0;
}