diff options
author | Denis Pilat <denis.pilat@st.com> | 2007-02-02 12:18:37 +0000 |
---|---|---|
committer | Denis Pilat <denis.pilat@st.com> | 2007-02-02 12:18:37 +0000 |
commit | 99b3d57478fc85862a69b64bd2752d0bb9dfd5e7 (patch) | |
tree | c832eee4731d5f0721d046b6d06e8eb89e24b3b9 /gdb/ChangeLog | |
parent | d3c598de8ea13d894fbb25194902241373e64cf5 (diff) | |
download | gdb-99b3d57478fc85862a69b64bd2752d0bb9dfd5e7.zip gdb-99b3d57478fc85862a69b64bd2752d0bb9dfd5e7.tar.gz gdb-99b3d57478fc85862a69b64bd2752d0bb9dfd5e7.tar.bz2 |
2007-02-02 Denis Pilat <denis.pilat@st.com>
* thread.c (make_cleanup_restore_current_thread): New function.
(info_threads_command): Use of make_cleanup_restore_current_thread
to restore the current thread and the selected frame.
(restore_selected_frame): New function.
(struct current_thread_cleanup): Add frame_id field.
(do_restore_current_thread_cleanup): Add restoring of the selected
frame.
(make_cleanup_restore_current_thread): Likewise.
(thread_apply_all_command): backup the selected frame while
entering the function and restore it at exit.
(thread_apply_command): Likewise.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6a40b88..5811d24 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,19 @@ 2007-02-02 Denis Pilat <denis.pilat@st.com> + * thread.c (make_cleanup_restore_current_thread): New function. + (info_threads_command): Use of make_cleanup_restore_current_thread + to restore the current thread and the selected frame. + (restore_selected_frame): New function. + (struct current_thread_cleanup): Add frame_id field. + (do_restore_current_thread_cleanup): Add restoring of the selected + frame. + (make_cleanup_restore_current_thread): Likewise. + (thread_apply_all_command): backup the selected frame while + entering the function and restore it at exit. + (thread_apply_command): Likewise. + +2007-02-02 Denis Pilat <denis.pilat@st.com> + * MAINTAINERS (Write After Approval): Add myself to the list. 2006-02-01 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> |