X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=qemu-coroutine-sleep.c;h=169ce5ccc921e9ec9705b1e8409da0fba9fbff20;hb=1de7afc984b49af164e2619e6850b9732b173b34;hp=fd6527444666c7f9d3e0f4ea919e55a31c1ca389;hpb=31841e463fc069f3370f85060fbe450b3ff664b4;p=qemu.git diff --git a/qemu-coroutine-sleep.c b/qemu-coroutine-sleep.c index fd6527444..169ce5ccc 100644 --- a/qemu-coroutine-sleep.c +++ b/qemu-coroutine-sleep.c @@ -11,8 +11,8 @@ * */ -#include "qemu-coroutine.h" -#include "qemu-timer.h" +#include "block/coroutine.h" +#include "qemu/timer.h" typedef struct CoSleepCB { QEMUTimer *ts; @@ -23,7 +23,6 @@ static void co_sleep_cb(void *opaque) { CoSleepCB *sleep_cb = opaque; - qemu_free_timer(sleep_cb->ts); qemu_coroutine_enter(sleep_cb->co, NULL); } @@ -35,4 +34,6 @@ void coroutine_fn co_sleep_ns(QEMUClock *clock, int64_t ns) sleep_cb.ts = qemu_new_timer(clock, SCALE_NS, co_sleep_cb, &sleep_cb); qemu_mod_timer(sleep_cb.ts, qemu_get_clock_ns(clock) + ns); qemu_coroutine_yield(); + qemu_del_timer(sleep_cb.ts); + qemu_free_timer(sleep_cb.ts); }