Index: gdb/mi/mi-cmds.h |
diff --git a/gdb/mi/mi-cmds.h b/gdb/mi/mi-cmds.h |
index 309a3cede7de5790e37a8cb0c35d14deff5fe1ab..4d0fc9d5577c48281e6fc3948b975a02aa44847a 100644 |
--- a/gdb/mi/mi-cmds.h |
+++ b/gdb/mi/mi-cmds.h |
@@ -35,7 +35,8 @@ extern const char mi_all_values[]; |
typedef void (mi_cmd_argv_ftype) (char *command, char **argv, int argc); |
-/* Function implementing each command */ |
+/* Declarations of the functions implementing each command. */ |
+ |
extern mi_cmd_argv_ftype mi_cmd_ada_task_info; |
extern mi_cmd_argv_ftype mi_cmd_add_inferior; |
extern mi_cmd_argv_ftype mi_cmd_break_insert; |
@@ -72,6 +73,7 @@ extern mi_cmd_argv_ftype mi_cmd_file_list_exec_source_files; |
extern mi_cmd_argv_ftype mi_cmd_gdb_exit; |
extern mi_cmd_argv_ftype mi_cmd_inferior_tty_set; |
extern mi_cmd_argv_ftype mi_cmd_inferior_tty_show; |
+extern mi_cmd_argv_ftype mi_cmd_info_os; |
extern mi_cmd_argv_ftype mi_cmd_interpreter_exec; |
extern mi_cmd_argv_ftype mi_cmd_list_features; |
extern mi_cmd_argv_ftype mi_cmd_list_target_features; |
@@ -117,7 +119,7 @@ extern mi_cmd_argv_ftype mi_cmd_var_update; |
extern mi_cmd_argv_ftype mi_cmd_enable_pretty_printing; |
extern mi_cmd_argv_ftype mi_cmd_var_set_update_range; |
-/* Description of a single command. */ |
+/* Description of a single command. */ |
struct mi_cli |
{ |
@@ -129,7 +131,7 @@ struct mi_cli |
struct mi_cmd |
{ |
- /* official name of the command. */ |
+ /* Official name of the command. */ |
const char *name; |
/* The corresponding CLI command that can be used to implement this |
MI command (if cli.lhs is non NULL). */ |
@@ -138,7 +140,7 @@ struct mi_cmd |
mi_cmd_argv_ftype *argv_func; |
}; |
-/* Lookup a command in the mi comand table */ |
+/* Lookup a command in the MI command table. */ |
extern struct mi_cmd *mi_lookup (const char *command); |