mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 23:03:54 -06:00
monitor: Introduce MONITOR_USE_READLINE flag (Jan Kiszka)
This allows to create monitor terminals that do not make use of the interactive readline back-end but rather send complete commands. The pass-through monitor interface of the gdbstub will be an example. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6717 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
2724b1806a
commit
cde76ee16a
5 changed files with 46 additions and 15 deletions
|
@ -128,8 +128,11 @@ void do_info_migrate(Monitor *mon)
|
|||
void migrate_fd_monitor_suspend(FdMigrationState *s)
|
||||
{
|
||||
s->mon_resume = cur_mon;
|
||||
monitor_suspend(cur_mon);
|
||||
dprintf("suspending monitor\n");
|
||||
if (monitor_suspend(cur_mon) == 0)
|
||||
dprintf("suspending monitor\n");
|
||||
else
|
||||
monitor_printf(cur_mon, "terminal does not allow synchronous "
|
||||
"migration, continuing detached\n");
|
||||
}
|
||||
|
||||
void migrate_fd_error(FdMigrationState *s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue