projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
788ec57
)
gdb/mi: rename build_table to add_builtin_mi_commands
author
Andrew Burgess
<aburgess@redhat.com>
Tue, 14 Dec 2021 11:43:34 +0000
(11:43 +0000)
committer
Andrew Burgess
<aburgess@redhat.com>
Tue, 14 Dec 2021 11:44:44 +0000
(11:44 +0000)
Just give the function build_table a more descriptive name. There
should be no user visible changes after this commit.
gdb/mi/mi-cmds.c
patch
|
blob
|
history
diff --git
a/gdb/mi/mi-cmds.c
b/gdb/mi/mi-cmds.c
index 9c11db00b3a3585b1e6ecf02ec6e02047d98e7ab..d02e4b20562a45940d327eb195e3e56f3a10e756 100644
(file)
--- 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
();
}