From 728400d7698631b5f58f222c1506a2e30ca2aa2d Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 30 Jul 2012 17:16:10 +0000 Subject: [PATCH] * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit. --- gdb/ChangeLog | 4 ++++ gdb/remote-sim.c | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7ca0070f06..00411df18c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2012-07-30 Tom Tromey + + * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit. + 2012-07-30 Ulrich Weigand * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index f5927f2d96..b3890b8426 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -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; }