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.
This commit is contained in:
parent
4d28413b40
commit
143260c9bf
4 changed files with 17 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
2009-04-08 Vladimir Prus <vladimir@codesourcery.com>
|
||||
|
||||
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.
|
||||
|
||||
2009-04-07 Doug Evans <dje@google.com>
|
||||
|
||||
* symfile.c (symbol_file_clear): Fix indentation.
|
||||
|
|
|
@ -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},
|
||||
|
|
|
@ -53,6 +53,7 @@ extern mi_cmd_argv_ftype mi_cmd_env_path;
|
|||
extern mi_cmd_argv_ftype mi_cmd_env_pwd;
|
||||
extern mi_cmd_argv_ftype mi_cmd_exec_continue;
|
||||
extern mi_cmd_argv_ftype mi_cmd_exec_finish;
|
||||
extern mi_cmd_argv_ftype mi_cmd_exec_jump;
|
||||
extern mi_cmd_argv_ftype mi_cmd_exec_next;
|
||||
extern mi_cmd_argv_ftype mi_cmd_exec_next_instruction;
|
||||
extern mi_cmd_argv_ftype mi_cmd_exec_return;
|
||||
|
|
|
@ -168,6 +168,13 @@ mi_cmd_exec_return (char *command, char **argv, int argc)
|
|||
print_stack_frame (get_selected_frame (NULL), 1, LOC_AND_ADDRESS);
|
||||
}
|
||||
|
||||
void
|
||||
mi_cmd_exec_jump (char *args, char **argv, int argc)
|
||||
{
|
||||
/* FIXME: Should call a libgdb function, not a cli wrapper. */
|
||||
return mi_execute_async_cli_command ("jump", argv, argc);
|
||||
}
|
||||
|
||||
static int
|
||||
proceed_thread_callback (struct thread_info *thread, void *arg)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue