diff options
author | Yao Qi <yao@codesourcery.com> | 2013-03-29 15:21:23 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2013-03-29 15:21:23 +0000 |
commit | 9852c492bd1c33290056351227ed7f314ff045c3 (patch) | |
tree | 2e1563c05221d718490bd201bb21eac3b4635288 /gdb/target.h | |
parent | af312be73153278ccc14e39c40a2bb0923578aa8 (diff) | |
download | gdb-9852c492bd1c33290056351227ed7f314ff045c3.zip gdb-9852c492bd1c33290056351227ed7f314ff045c3.tar.gz gdb-9852c492bd1c33290056351227ed7f314ff045c3.tar.bz2 |
gdb/
2013-03-29 Yao Qi <yao@codesourcery.com>
* corelow.c: Include "completer.h".
(_initialize_corelow): Call add_target_with_completer with
argument 'filename_completer'.
* tracepoint.c: Likewise.
* exec.c (_initialize_exec): Likewise.
* target.c (add_target): Rename to ...
(add_target_with_completer): ... this. Call set_cmd_completer
if parameter completer is not NULL.
(add_target): New.
* target.h: Include "command.h".
(add_target_with_completer): Declare it.
gdb/testsuite:
2013-03-29 Yao Qi <yao@codesourcery.com>
* gdb.base/completion.exp: Test completion of commands
"target core", "target tfile" and "target exec".
* gdb.trace/tfile.exp: Test completion of command
"target tfile".
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/target.h b/gdb/target.h index ee3fbff..4f8520c 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -63,6 +63,7 @@ struct expression; #include "vec.h" #include "gdb_signals.h" #include "btrace.h" +#include "command.h" enum strata { @@ -1841,6 +1842,9 @@ int target_verify_memory (const gdb_byte *data, extern void add_target (struct target_ops *); +extern void add_target_with_completer (struct target_ops *t, + completer_ftype *completer); + /* Adds a command ALIAS for target T and marks it deprecated. This is useful for maintaining backwards compatibility when renaming targets. */ |