diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2009-04-08 06:58:37 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2009-04-08 06:58:37 +0000 |
commit | 143260c9bf2058b768d4d04cd4518054104dafd4 (patch) | |
tree | ea71967e1a1676afa76d00a95657a689990927d8 /gdb/mi/mi-cmds.c | |
parent | 4d28413b409102b3fc5e7ed828e4014895143d4e (diff) | |
download | gdb-143260c9bf2058b768d4d04cd4518054104dafd4.zip gdb-143260c9bf2058b768d4d04cd4518054104dafd4.tar.gz gdb-143260c9bf2058b768d4d04cd4518054104dafd4.tar.bz2 |
Implement -exec-jump.
* mi/mi-cmds.h (mi_cmd_exec_jump): Declare.
* mi/mi-main.c (mi_cmd_exec_jump): New.
* mi/mi-cmds.c (mi_cmds): Register exec-jump.
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 2610b6a..df8f74a 100644 --- a/gdb/mi/mi-cmds.c +++ b/gdb/mi/mi-cmds.c @@ -61,6 +61,7 @@ struct mi_cmd mi_cmds[] = { "exec-arguments", { "set args", 1 }, NULL }, { "exec-continue", { NULL, 0 }, mi_cmd_exec_continue}, { "exec-finish", { NULL, 0 }, mi_cmd_exec_finish}, + { "exec-jump", { NULL, 0 }, mi_cmd_exec_jump}, { "exec-interrupt", { NULL, 0 }, mi_cmd_exec_interrupt}, { "exec-next", { NULL, 0 }, mi_cmd_exec_next}, { "exec-next-instruction", { NULL, 0 }, mi_cmd_exec_next_instruction}, |