diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2011-02-28 15:21:21 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2011-02-28 15:21:21 +0000 |
commit | 170b53b2b6ca83fe08123b53fad469ba8e92aed4 (patch) | |
tree | b702af87ab0ae241089a219cd62eb989407a9427 /gdb/ui-out.h | |
parent | 81896e36e82ae1d86cdcdb011021860eb3fb7049 (diff) | |
download | gdb-170b53b2b6ca83fe08123b53fad469ba8e92aed4.zip gdb-170b53b2b6ca83fe08123b53fad469ba8e92aed4.tar.gz gdb-170b53b2b6ca83fe08123b53fad469ba8e92aed4.tar.bz2 |
* breakpoint.c (wrap_indent_at_field): New function.
(print_breakpoint_location): Use it instead of WRAP_INDENT argument.
Allocate ui_stream locally instead of using STB argument.
(print_one_breakpoint_location): Update call.
* ui-out.c (ui_out_query_field): New function.
* ui-out.h (ui_out_query_field): Add prototype.
Diffstat (limited to 'gdb/ui-out.h')
-rw-r--r-- | gdb/ui-out.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/ui-out.h b/gdb/ui-out.h index 4ad0651..5265902 100644 --- a/gdb/ui-out.h +++ b/gdb/ui-out.h @@ -156,6 +156,9 @@ extern int ui_out_get_verblvl (struct ui_out *uiout); extern int ui_out_test_flags (struct ui_out *uiout, int mask); +extern int ui_out_query_field (struct ui_out *uiout, int colno, + int *width, int *alignment, char **col_name); + #if 0 extern void ui_out_result_begin (struct ui_out *uiout, char *class); |