From 56a9aa1d10f5ddb8a1f77e0de0d3c5ef48cdb848 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 15 Apr 2011 03:43:46 +0000 Subject: gdb: sim: add command line completion For now, only the sub-command name is completed. No support yet for completing options to that command. But even this is a huge step as currently, nothing is completed, and the basic "help sim" is fairly obtuse as to what exactly the "sim" command accepts. Signed-off-by: Mike Frysinger --- include/gdb/ChangeLog | 4 ++++ include/gdb/remote-sim.h | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'include/gdb') diff --git a/include/gdb/ChangeLog b/include/gdb/ChangeLog index 8b31e11475..dabaa5b19e 100644 --- a/include/gdb/ChangeLog +++ b/include/gdb/ChangeLog @@ -1,3 +1,7 @@ +2011-04-14 Mike Frysinger + + * remote-sim.h (sim_complete_command): New prototype. + 2011-03-05 Mike Frysinger * sim-bfin.h: New file. diff --git a/include/gdb/remote-sim.h b/include/gdb/remote-sim.h index a171cfda5b..5f6000d83d 100644 --- a/include/gdb/remote-sim.h +++ b/include/gdb/remote-sim.h @@ -276,6 +276,10 @@ void sim_stop_reason (SIM_DESC sd, enum sim_stop *reason, int *sigrc); void sim_do_command (SIM_DESC sd, char *cmd); +/* Complete a command based on the available sim commands. Returns an + array of possible matches. */ +char **sim_complete_command (SIM_DESC sd, char *text, char *word); + #ifdef __cplusplus } #endif -- cgit v1.2.3