mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
char: remove explicit_fe_open, use a set_handlers argument
No need to keep explicit_fe_open around if it affects only a qemu_chr_fe_set_handlers(). Use an additional argument instead. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20161022095318.17775-24-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
72ac876248
commit
39ab61c6d0
44 changed files with 67 additions and 60 deletions
|
|
@ -3988,12 +3988,12 @@ void monitor_init(CharDriverState *chr, int flags)
|
|||
|
||||
if (monitor_is_qmp(mon)) {
|
||||
qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_qmp_read,
|
||||
monitor_qmp_event, mon, NULL);
|
||||
monitor_qmp_event, mon, NULL, true);
|
||||
qemu_chr_fe_set_echo(&mon->chr, true);
|
||||
json_message_parser_init(&mon->qmp.parser, handle_qmp_command);
|
||||
} else {
|
||||
qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_read,
|
||||
monitor_event, mon, NULL);
|
||||
monitor_event, mon, NULL, true);
|
||||
}
|
||||
|
||||
qemu_mutex_lock(&monitor_lock);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue