diff options
author | Pedro Alves <palves@redhat.com> | 2016-06-21 01:11:48 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2016-06-21 01:11:48 +0100 |
commit | b6dcde571e1a230d12fc483ba6d38a1253ab097e (patch) | |
tree | 84ac376d97a1f55df78e029ce77794e6d0a2f1da /gdb/top.h | |
parent | 23ff98d2fed4a1eaeb815e18cd4169e5aa7aaa60 (diff) | |
download | gdb-b6dcde571e1a230d12fc483ba6d38a1253ab097e.zip gdb-b6dcde571e1a230d12fc483ba6d38a1253ab097e.tar.gz gdb-b6dcde571e1a230d12fc483ba6d38a1253ab097e.tar.bz2 |
Make current_ui_out be per UI
Similarly to gdb_stdout&co.
gdb/ChangeLog:
2016-06-21 Pedro Alves <palves@redhat.com>
* top.c: Call gen_ret_current_ui_field_ptr for current_uiout.
* top.h (struct ui) <m_current_uiout>: New field.
* ui-out.c (current_uiout): Delete.
* ui-out.h (current_uiout): Delete.
(current_ui_current_uiout_ptr): New declaration.
(current_uiout): Reimplement as wrapper around
current_ui_current_uiout_ptr.
Diffstat (limited to 'gdb/top.h')
-rw-r--r-- | gdb/top.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -98,6 +98,9 @@ struct ui *_unfiltered. In the very near future that restriction shall be removed - either call shall be unfiltered. (cagney 1999-06-13). */ struct ui_file *m_gdb_stdlog; + + /* The current ui_out. */ + struct ui_out *m_current_uiout; }; /* The main UI. This is the UI that is bound to stdin/stdout/stderr. |