aboutsummaryrefslogtreecommitdiff
path: root/gdb/mi/mi-main.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-09-18 05:00:51 +0000
committerAndrew Cagney <cagney@redhat.com>2001-09-18 05:00:51 +0000
commit2b65245ef4e04dd3ab045f0207aee8efbfd0a8ae (patch)
tree2d052c339d58a13b51ef917b6e6c39ef4d65367d /gdb/mi/mi-main.c
parentfed9891d87cdfed178e66e35779c22e44482ed31 (diff)
downloadgdb-2b65245ef4e04dd3ab045f0207aee8efbfd0a8ae.zip
gdb-2b65245ef4e04dd3ab045f0207aee8efbfd0a8ae.tar.gz
gdb-2b65245ef4e04dd3ab045f0207aee8efbfd0a8ae.tar.bz2
Add ui_out parameter to libgdb functions.
Diffstat (limited to 'gdb/mi/mi-main.c')
-rw-r--r--gdb/mi/mi-main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c
index 464e5bc..eac8835 100644
--- a/gdb/mi/mi-main.c
+++ b/gdb/mi/mi-main.c
@@ -230,7 +230,7 @@ mi_cmd_thread_select (char *command, char **argv, int argc)
return MI_CMD_ERROR;
}
else
- rc = gdb_thread_select (argv[0]);
+ rc = gdb_thread_select (uiout, argv[0]);
if (rc == GDB_RC_FAIL)
return MI_CMD_CAUGHT_ERROR;
@@ -251,7 +251,7 @@ mi_cmd_thread_list_ids (char *command, char **argv, int argc)
}
else
#ifdef UI_OUT
- rc = gdb_list_thread_ids ();
+ rc = gdb_list_thread_ids (uiout);
#endif
if (rc == GDB_RC_FAIL)