diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2010-03-23 21:48:14 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2010-03-23 21:48:14 +0000 |
commit | 9b4c786c6c9f2599873343b935a46a446ba1c029 (patch) | |
tree | add4a2270f4c5c978a8d4914916ce8afefbc1e58 /gdb/mi/mi-cmds.c | |
parent | f224b49dcd9afdff4cc97bbb6d88dec3b4dfc433 (diff) | |
download | gdb-9b4c786c6c9f2599873343b935a46a446ba1c029.zip gdb-9b4c786c6c9f2599873343b935a46a446ba1c029.tar.gz gdb-9b4c786c6c9f2599873343b935a46a446ba1c029.tar.bz2 |
Implement -break-passcount.
* mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
* mi/mi-cmds.c (mi_cmds): Register -break-passcount.
* mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
Diffstat (limited to 'gdb/mi/mi-cmds.c')
-rw-r--r-- | gdb/mi/mi-cmds.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/mi/mi-cmds.c b/gdb/mi/mi-cmds.c index c2183fb..6b260fc 100644 --- a/gdb/mi/mi-cmds.c +++ b/gdb/mi/mi-cmds.c @@ -43,6 +43,7 @@ struct mi_cmd mi_cmds[] = { "break-info", { "info break", 1 }, NULL }, { "break-insert", { NULL, 0 }, mi_cmd_break_insert}, { "break-list", { "info break", }, NULL }, + { "break-passcount", { NULL, 0 }, mi_cmd_break_passcount}, { "break-watch", { NULL, 0 }, mi_cmd_break_watch}, { "data-disassemble", { NULL, 0 }, mi_cmd_disassemble}, { "data-evaluate-expression", { NULL, 0 }, mi_cmd_data_evaluate_expression}, |