diff options
author | Andrew Burgess <aburgess@redhat.com> | 2021-12-14 11:43:34 +0000 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2021-12-14 11:44:44 +0000 |
commit | 78d4da9ae0d3447f28274a00b278f58ca7d8d1b2 (patch) | |
tree | a4ab390e373d50a93ea838662becb44942475a50 /gdb/mi | |
parent | 788ec57f0a43261ced1f63dda68c224824d1f16d (diff) | |
download | gdb-78d4da9ae0d3447f28274a00b278f58ca7d8d1b2.zip gdb-78d4da9ae0d3447f28274a00b278f58ca7d8d1b2.tar.gz gdb-78d4da9ae0d3447f28274a00b278f58ca7d8d1b2.tar.bz2 |
gdb/mi: rename build_table to add_builtin_mi_commands
Just give the function build_table a more descriptive name. There
should be no user visible changes after this commit.
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-cmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mi/mi-cmds.c b/gdb/mi/mi-cmds.c index 9c11db0..d02e4b2 100644 --- a/gdb/mi/mi-cmds.c +++ b/gdb/mi/mi-cmds.c @@ -190,7 +190,7 @@ mi_command::do_suppress_notification () const /* Initialize the available MI commands. */ static void -build_table () +add_builtin_mi_commands () { add_mi_cmd_mi ("ada-task-info", mi_cmd_ada_task_info); add_mi_cmd_mi ("add-inferior", mi_cmd_add_inferior); @@ -368,5 +368,5 @@ void _initialize_mi_cmds (); void _initialize_mi_cmds () { - build_table (); + add_builtin_mi_commands (); } |