diff options
author | Pedro Alves <palves@redhat.com> | 2010-04-19 00:48:44 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-04-19 00:48:44 +0000 |
commit | 6149aea959633bda5ec763817d6d2bee4e7d43c3 (patch) | |
tree | 31fb32e77c457d56bfd0950f292af06060f78118 /gdb/NEWS | |
parent | 8b47812243640f8945e86e5eef6a54f1f5b32a39 (diff) | |
download | gdb-6149aea959633bda5ec763817d6d2bee4e7d43c3.zip gdb-6149aea959633bda5ec763817d6d2bee4e7d43c3.tar.gz gdb-6149aea959633bda5ec763817d6d2bee4e7d43c3.tar.bz2 |
PR breakpoints/8554.
Implement `save-breakpoints'.
gdb/
* breakpoint.c (save_cmdlist): New.
(breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
to save_cmdlist.
(print_recreate_catch_fork): New.
(catch_fork_breakpoint_ops): Install it.
(print_recreate_catch_vfork): New.
(catch_vfork_breakpoint_ops): Install it.
(print_recreate_catch_syscall): New.
(catch_syscall_breakpoint_ops): Install it.
(print_recreate_catch_exec): New.
(catch_exec_breakpoint_ops): Install it.
(print_recreate_exception_catchpoint): New.
(gnu_v3_exception_catchpoint_ops): Install it.
(save_breakpoints): New, based on tracepoint_save_command, but
handle all breakpoint types.
(save_breakpoints_command): New.
(tracepoint_save_command): Rename to...
(save_tracepoints_command): ... this, and reimplement using
save_breakpoints.
(save_command): New.
(_initialize_breakpoints): Install the "save" command prefix.
Install the "save breakpoints" command. Make "save-tracepoints" a
deprecated alias for "save tracepoints".
* breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
* ada-lang.c (print_recreate_exception): New.
(print_recreate_catch_exception): New.
(catch_exception_breakpoint_ops): Install it.
(print_recreate_catch_exception_unhandled): New.
(catch_exception_unhandled_breakpoint_ops): Install it.
(print_recreate_catch_assert): New.
(catch_assert_breakpoint_ops): Install it.
* NEWS: Mention the new `save breakpoints' command. Mention the
new `save tracepoints' alias and that `save-tracepoints' is now
deprecated.
gdb/doc/
* gdb.texinfo (Save Breakpoints): New node.
(save-tracepoints): Rename to ...
(save tracepoints): ... this. Mention that `save-tracepoints' is
a deprecated alias to `save tracepoints'.
gdb/testsuite/
* gdb.trace/save-trace.exp: Adjust.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -47,6 +47,16 @@ qGetTIBAddr single `break' command creates multiple breakpoints (e.g., breakpoints on overloaded c++ functions). +* New commands + +save breakpoints <filename> + Save all current breakpoint definitions to a file suitable for use + in a later debugging session. To read the saved breakpoint + definitions, use the `source' command. + +`save tracepoints' is a new alias for `save-tracepoints'. The latter +is now deprecated. + * Python scripting ** The GDB Python API now has access to breakpoints, symbols, symbol |