diff options
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 3288fee..7fd2334 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -407,7 +407,7 @@ breakpoints_should_be_inserted_now (void) /* Don't remove breakpoints yet if, even though all threads are stopped, we still have events to process. */ for (thread_info *tp : all_non_exited_threads ()) - if (tp->resumed () && tp->suspend.waitstatus_pending_p) + if (tp->resumed () && tp->has_pending_waitstatus ()) return 1; } return 0; |