diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-09-18 05:00:51 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-09-18 05:00:51 +0000 |
commit | 2b65245ef4e04dd3ab045f0207aee8efbfd0a8ae (patch) | |
tree | 2d052c339d58a13b51ef917b6e6c39ef4d65367d /gdb/gdb.h | |
parent | fed9891d87cdfed178e66e35779c22e44482ed31 (diff) | |
download | gdb-2b65245ef4e04dd3ab045f0207aee8efbfd0a8ae.zip gdb-2b65245ef4e04dd3ab045f0207aee8efbfd0a8ae.tar.gz gdb-2b65245ef4e04dd3ab045f0207aee8efbfd0a8ae.tar.bz2 |
Add ui_out parameter to libgdb functions.
Diffstat (limited to 'gdb/gdb.h')
-rw-r--r-- | gdb/gdb.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |