qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL][PATCH 4/5] Kick io-thread on qemu_chr_accept_input


From: Jan Kiszka
Subject: [Qemu-devel] [PULL][PATCH 4/5] Kick io-thread on qemu_chr_accept_input
Date: Mon, 16 Apr 2012 17:36:32 +0200

Once a chr frontend is able to receive input again, we need to inform
the io-thread about this fact. Otherwise, main_loop_wait may continue to
select without the related backend file descriptor in its set. This can
cause high input latencies if only low-rate events arrive otherwise.

Signed-off-by: Jan Kiszka <address@hidden>
---
 qemu-char.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/qemu-char.c b/qemu-char.c
index bb9e3f5..74c60e1 100644
--- a/qemu-char.c
+++ b/qemu-char.c
@@ -177,6 +177,7 @@ void qemu_chr_accept_input(CharDriverState *s)
 {
     if (s->chr_accept_input)
         s->chr_accept_input(s);
+    qemu_notify_event();
 }
 
 void qemu_chr_fe_printf(CharDriverState *s, const char *fmt, ...)
-- 
1.7.3.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]