diff options
author | Xavier Roirand <roirand@adacore.com> | 2018-01-26 11:13:11 +0100 |
---|---|---|
committer | Xavier Roirand <roirand@adacore.com> | 2018-01-31 13:42:30 +0100 |
commit | bea298f9547372e6cb7854fabc2c0646e1d3d9be (patch) | |
tree | 3e344dc77f6480fb5612f00bbb54367adbffebd4 /gdb/NEWS | |
parent | 56ecd069f031d6bcdaa46664c68a16cb27b379c3 (diff) | |
download | gdb-bea298f9547372e6cb7854fabc2c0646e1d3d9be.zip gdb-bea298f9547372e6cb7854fabc2c0646e1d3d9be.tar.gz gdb-bea298f9547372e6cb7854fabc2c0646e1d3d9be.tar.bz2 |
(Ada) Add gdb-mi support for stopping at start of exception handler.
Following my previous commit which add support for stopping at start of
exception handler, this commit adds required gdb-mi support for this
feature.
gdb/ChangeLog:
* mi/mi-cmd-catch.c (mi_cmd_catch_handlers): New function.
* mi/mi-cmds.c (mi_cmds): Add catch-handlers command.
* mi/mi-cmds.h (mi_cmd_catch_handlers): Add external declaration.
* NEWS: Document "-catch-handlers" command.
gdb/doc/ChangeLog:
* gdb.texinfo (Ada Exception gdb/mi Catchpoints): Add
documentation for new "-catch-handlers" command.
gdb/testsuite/ChangeLog:
* gdb.ada/mi_catch_ex_hand.exp: New testcase.
* gdb.ada/mi_catch_ex_hand/foo.adb: New file.
Tested on x86_64-linux.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -377,6 +377,10 @@ show disassembler-options List the shared libraries in the program. This is equivalent to the CLI command "info shared". +-catch-handlers + Catchpoints stopping the program when Ada exceptions are + handled. This is equivalent to the CLI command "catch handlers". + *** Changes in GDB 7.12 * GDB and GDBserver now build with a C++ compiler by default. |