diff options
author | Michael Snyder <msnyder@vmware.com> | 2009-11-20 17:23:38 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2009-11-20 17:23:38 +0000 |
commit | 6b04bdb74a44bebb3d4931de23ae39b0315d06b6 (patch) | |
tree | 3eb64a81055abe07f9ba9e86b529138002b04390 /gdb/ChangeLog | |
parent | c29aca4a95885ab0b01c346590afa685cf121919 (diff) | |
download | gdb-6b04bdb74a44bebb3d4931de23ae39b0315d06b6.zip gdb-6b04bdb74a44bebb3d4931de23ae39b0315d06b6.tar.gz gdb-6b04bdb74a44bebb3d4931de23ae39b0315d06b6.tar.bz2 |
2009-10-25 Michael Snyder <msnyder@vmware.com>
* target.h (struct target_ops): New methods to_get_bookmark
and to_goto_bookmark.
(target_get_bookmark): New macro.
(target_goto_bookmark): New macro.
* target.c (dummy_get_bookmark): New function, default implementation.
(dummy_goto_bookmark): New function, default implementation.
(update_current_target): Inherit new methods.
* record.c (record_get_bookmark): New function.
(record_goto_bookmark): New function.
(init_record_ops): Set to_get_bookmark and to_goto_bookmark methods.
* reverse.c (struct bookmark): New type.
(save_bookmark_command): New function (command).
(delete_bookmark_command): New function (command).
(goto_bookmark_command): New function (command).
(bookmarks_info): New function (command).
(_initialize_reverse): Add new bookmark commands.
* command.h (enum command_class): Add class_bookmark.
* NEWS: Mention bookmark commands.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a89482d..eee179d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,24 @@ +2009-11-20 Michael Snyder <msnyder@vmware.com> + + * target.h (struct target_ops): New methods to_get_bookmark + and to_goto_bookmark. + (target_get_bookmark): New macro. + (target_goto_bookmark): New macro. + * target.c (dummy_get_bookmark): New function, default implementation. + (dummy_goto_bookmark): New function, default implementation. + (update_current_target): Inherit new methods. + * record.c (record_get_bookmark): New function. + (record_goto_bookmark): New function. + (init_record_ops): Set to_get_bookmark and to_goto_bookmark methods. + * reverse.c (struct bookmark): New type. + (save_bookmark_command): New function (command). + (delete_bookmark_command): New function (command). + (goto_bookmark_command): New function (command). + (bookmarks_info): New function (command). + (_initialize_reverse): Add new bookmark commands. + * command.h (enum command_class): Add class_bookmark. + * NEWS: Mention bookmark commands. + 2009-11-20 Pedro Alves <pedro@codesourcery.com> * breakpoint.c (update_global_location_list): Fix duplicate |