diff options
author | Pedro Alves <palves@redhat.com> | 2014-03-27 18:42:53 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2014-05-29 18:08:11 +0100 |
commit | 22bcd14b34126004346fa3226532dd2c1f3a9790 (patch) | |
tree | 87746e56b59d87d0f846e654ebaabe4b47abe1b7 /gdb/ChangeLog | |
parent | 4ae57c052202642ac2976a4ce8929a14d3eb3d12 (diff) | |
download | gdb-22bcd14b34126004346fa3226532dd2c1f3a9790.zip gdb-22bcd14b34126004346fa3226532dd2c1f3a9790.tar.gz gdb-22bcd14b34126004346fa3226532dd2c1f3a9790.tar.bz2 |
infrun.c: stop_stepping -> stop_waiting.
stop_stepping is called even when we weren't stepping. It's job really is:
static void
stop_waiting (struct execution_control_state *ecs)
{
...
/* Let callers know we don't want to wait for the inferior anymore. */
ecs->wait_some_more = 0;
}
So rename it for clarity.
gdb/
2014-05-29 Pedro Alves <palves@redhat.com>
* infrun.c (stop_stepping): Rename to ...
(stop_waiting): ... this.
(proceed): Update comment.
(process_event_stop_test, handle_inferior_event)
(handle_signal_stop, handle_step_into_function)
(handle_step_into_function_backward): Update.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3225ceb..847939b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,14 @@ 2014-05-29 Pedro Alves <palves@redhat.com> + * infrun.c (stop_stepping): Rename to ... + (stop_waiting): ... this. + (proceed): Update comment. + (process_event_stop_test, handle_inferior_event) + (handle_signal_stop, handle_step_into_function) + (handle_step_into_function_backward): Update. + +2014-05-29 Pedro Alves <palves@redhat.com> + * infcall.c (run_inferior_call): Don't check whether the current thread is running after the proceed call. |