qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 09/10] coroutine: schedule timeout coroutine instead


From: Lai Jiangshan
Subject: [Qemu-devel] [PATCH 09/10] coroutine: schedule timeout coroutine instead process it directly
Date: Tue, 3 Apr 2012 16:38:16 +0800

Avoid a timer callback spends too much time.

Signed-off-by: Lai Jiangshan <address@hidden>
---
 qemu-coroutine-sleep.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/qemu-coroutine-sleep.c b/qemu-coroutine-sleep.c
index fd65274..df9254a 100644
--- a/qemu-coroutine-sleep.c
+++ b/qemu-coroutine-sleep.c
@@ -24,7 +24,7 @@ static void co_sleep_cb(void *opaque)
     CoSleepCB *sleep_cb = opaque;
 
     qemu_free_timer(sleep_cb->ts);
-    qemu_coroutine_enter(sleep_cb->co, NULL);
+    qemu_co_runnable_schedule(sleep_cb->co);
 }
 
 void coroutine_fn co_sleep_ns(QEMUClock *clock, int64_t ns)
-- 
1.7.4.4




reply via email to

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