Avoid a timer callback spends too much time.
Signed-off-by: Lai Jiangshan <[email protected]>
---
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