summaryrefslogtreecommitdiff
path: root/gdb/gdb.h
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
commit3f2b04f3f704a81982b791c2c8d7e7452661fecf (patch)
tree8bc4511914e94dfd6df898be1157eae145fbe814 /gdb/gdb.h
parent503917b47a48886f66f0c8ed8d48241d29c6f8e1 (diff)
downloadgdb-3f2b04f3f704a81982b791c2c8d7e7452661fecf.tar.gz
Add ui_out parameter to libgdb functions.
Diffstat (limited to 'gdb/gdb.h')
-rw-r--r--gdb/gdb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/gdb.h b/gdb/gdb.h
index aa75612a6c6..737ac82edfe 100644
--- a/gdb/gdb.h
+++ b/gdb/gdb.h
@@ -44,7 +44,7 @@ enum gdb_rc {
/* Print the specified breakpoint on GDB_STDOUT. (Eventually this
function will ``print'' the object on ``output''). */
-enum gdb_rc gdb_breakpoint_query (/* struct {ui,gdb}_out *output, */ int bnum);
+enum gdb_rc gdb_breakpoint_query (struct ui_out *uiout, int bnum);
/* Create a breakpoint at ADDRESS (a GDB source and line). */
enum gdb_rc gdb_breakpoint (char *address, char *condition,
@@ -52,9 +52,9 @@ enum gdb_rc gdb_breakpoint (char *address, char *condition,
int thread, int ignore_count);
/* Switch thread and print notification. */
-enum gdb_rc gdb_thread_select (/* output object */ char *tidstr);
+enum gdb_rc gdb_thread_select (struct ui_out *uiout, char *tidstr);
/* Print a list of known thread ids. */
-enum gdb_rc gdb_list_thread_ids (/* output object */);
+enum gdb_rc gdb_list_thread_ids (struct ui_out *uiout);
#endif