monitor: Accept input only byte-wise

This allows to suspend command interpretation and execution
synchronously, e.g. during migration.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Jan Kiszka 2009-12-04 14:05:29 +01:00 committed by Anthony Liguori
parent acb6685fea
commit c62313bbdc

View File

@ -3864,7 +3864,7 @@ static int monitor_can_read(void *opaque)
{
Monitor *mon = opaque;
return (mon->suspend_cnt == 0) ? 128 : 0;
return (mon->suspend_cnt == 0) ? 1 : 0;
}
typedef struct CmdArgs {