Use target_terminal_ours_for_output in cp-support.c
We're only doing output here, so leave raw/cooked mode alone, as well as the SIGINT handler. Restore terminal settings after output, while at it. gdb/ChangeLog: 2016-04-12 Pedro Alves <palves@redhat.com> * cp-support.c (gdb_demangle): Use target_terminal_ours_for_output instead of target_terminal_ours, and restore target terminal with a cleanup.
This commit is contained in:
parent
99bbb428d4
commit
c509f1e1e8
|
@ -1,3 +1,9 @@
|
||||||
|
2016-04-12 Pedro Alves <palves@redhat.com>
|
||||||
|
|
||||||
|
* cp-support.c (gdb_demangle): Use target_terminal_ours_for_output
|
||||||
|
instead of target_terminal_ours, and restore target terminal with
|
||||||
|
a cleanup.
|
||||||
|
|
||||||
2016-04-12 Pedro Alves <palves@redhat.com>
|
2016-04-12 Pedro Alves <palves@redhat.com>
|
||||||
|
|
||||||
* ada-lang.c (type_as_string, type_as_string_and_cleanup): New
|
* ada-lang.c (type_as_string, type_as_string_and_cleanup): New
|
||||||
|
|
|
@ -1601,7 +1601,9 @@ gdb_demangle (const char *name, int options)
|
||||||
"demangler-warning", short_msg);
|
"demangler-warning", short_msg);
|
||||||
make_cleanup (xfree, long_msg);
|
make_cleanup (xfree, long_msg);
|
||||||
|
|
||||||
target_terminal_ours ();
|
make_cleanup_restore_target_terminal ();
|
||||||
|
target_terminal_ours_for_output ();
|
||||||
|
|
||||||
begin_line ();
|
begin_line ();
|
||||||
if (core_dump_allowed)
|
if (core_dump_allowed)
|
||||||
fprintf_unfiltered (gdb_stderr,
|
fprintf_unfiltered (gdb_stderr,
|
||||||
|
|
Loading…
Reference in New Issue