Searched refs:sleeptime_ns (Results 1 – 1 of 1) sorted by relevance
52 int64_t sleeptime_ns, endtime_ns; in cpu_throttle_thread() local61 sleeptime_ns = (int64_t)(throttle_ratio * CPU_THROTTLE_TIMESLICE_NS + 1); in cpu_throttle_thread()62 endtime_ns = qemu_clock_get_ns(QEMU_CLOCK_REALTIME) + sleeptime_ns; in cpu_throttle_thread()63 while (sleeptime_ns > 0 && !cpu->stop) { in cpu_throttle_thread()64 if (sleeptime_ns > SCALE_MS) { in cpu_throttle_thread()66 sleeptime_ns / SCALE_MS); in cpu_throttle_thread()69 g_usleep(sleeptime_ns / SCALE_US); in cpu_throttle_thread()72 sleeptime_ns = endtime_ns - qemu_clock_get_ns(QEMU_CLOCK_REALTIME); in cpu_throttle_thread()