diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-11-17 18:50:22 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2008-11-17 18:50:22 +0000 |
commit | a721238407980aeb5617769fefde3cc3ed08aff8 (patch) | |
tree | ff1c521cac93f303e010c79e87b373692d50720d /gdb/ChangeLog | |
parent | 764c62eb0185bc1f92441726066d895194ac5785 (diff) | |
download | gdb-a721238407980aeb5617769fefde3cc3ed08aff8.zip gdb-a721238407980aeb5617769fefde3cc3ed08aff8.tar.gz gdb-a721238407980aeb5617769fefde3cc3ed08aff8.tar.bz2 |
PR gdb/2250
* infrun.c (clear_proceed_status_thread): New function.
(clear_proceed_status_callback): New function.
(clear_proceed_status): In all-stop mode, clear per-thread
proceed status of *all* threads, not only the current.
(handle_inferior_event): In all-stop mode, if we're stepping
one thread, but got some inferior event in another thread
that does not cause GDB to break to the user interface,
ensure the interrupted stepping operation continues in the
original thread.
(currently_stepping): Move thread-related tests to ...
(currently_stepping_thread): ... this new function.
(currently_stepping_callback): New function.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2327ee1..e70bea1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,19 @@ +2008-11-17 Ulrich Weigand <uweigand@de.ibm.com> + + PR gdb/2250 + * infrun.c (clear_proceed_status_thread): New function. + (clear_proceed_status_callback): New function. + (clear_proceed_status): In all-stop mode, clear per-thread + proceed status of *all* threads, not only the current. + (handle_inferior_event): In all-stop mode, if we're stepping + one thread, but got some inferior event in another thread + that does not cause GDB to break to the user interface, + ensure the interrupted stepping operation continues in the + original thread. + (currently_stepping): Move thread-related tests to ... + (currently_stepping_thread): ... this new function. + (currently_stepping_callback): New function. + 2008-11-17 Vladimir Prus <vladimir@codesourcery.com> Implement =thread-selected notification. |