diff options
author | Pedro Alves <palves@redhat.com> | 2012-03-27 19:08:37 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-03-27 19:08:37 +0000 |
commit | f99d8bf46c55bc0192b3765e7738fd644c20619e (patch) | |
tree | 2fb350823defa26f0a9bf4c46085288f4862c546 /gdb/tracepoint.c | |
parent | 72508ac0bfe7aae764ddce41ea504e2377fecd1d (diff) | |
download | gdb-f99d8bf46c55bc0192b3765e7738fd644c20619e.zip gdb-f99d8bf46c55bc0192b3765e7738fd644c20619e.tar.gz gdb-f99d8bf46c55bc0192b3765e7738fd644c20619e.tar.bz2 |
2012-03-27 Pedro Alves <palves@redhat.com>
Eliminate struct ui_stream.
* ui-out.h (struct ui_stream): Delete.
(ui_out_field_stream): Adjust prototype.
(ui_out_stream_new, ui_out_stream_delete)
(make_cleanup_ui_out_stream_delete): Delete declarations.
* ui-out.c (ui_out_field_stream): Change prototype to take a
ui_file instead of a ui_stream. Adjust.
(ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
(make_cleanup_ui_out_stream_delete): Delete.
* breakpoint.c (print_breakpoint_location)
(print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
* disasm.c (dump_insns): Ditto.
(do_mixed_source_and_assembly, do_assembly_only): Adjust
prototype.
(gdb_disassembly): Use ui_file/mem_fileopen instead of
ui_stream/ui_out_stream_new.
* infcmd.c (print_return_value): Ditto.
* osdata.c (info_osdata_command): Don't allocate a local
ui_stream.
* stack.c (print_frame_arg, print_frame_args, print_frame): Use
ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
* tracepoint.c (print_one_static_tracepoint_marker): Don't
allocate a local ui_stream.
* mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
instead of ui_stream/ui_out_stream_new.
(list_args_or_locals): Don't allocate a local ui_stream.
* mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
(mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
ui_stream/ui_out_stream_new.
* cli/cli-setshow.c (do_setshow_command): Ditto.
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 89f75b6..057b441 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -4777,8 +4777,6 @@ print_one_static_tracepoint_marker (int count, char wrap_indent[80]; char extra_field_indent[80]; struct ui_out *uiout = current_uiout; - struct ui_stream *stb = ui_out_stream_new (uiout); - struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb); struct cleanup *bkpt_chain; VEC(breakpoint_p) *tracepoints; @@ -4885,7 +4883,6 @@ print_one_static_tracepoint_marker (int count, VEC_free (breakpoint_p, tracepoints); do_cleanups (bkpt_chain); - do_cleanups (old_chain); } static void |