X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=vl.c;h=0b4ed5241c8412c0533d2ffc134bcc4d26ad9072;hb=8cfef89271e27e4a7cd047835dc8161fad50bc5a;hp=1a95500ac76e8154a76121f19f2fdc6181d3eb81;hpb=83fd9629a39ee8a58f1f772a2ca3a7745a4c5743;p=mirror_qemu.git diff --git a/vl.c b/vl.c index 1a95500ac7..0b4ed5241c 100644 --- a/vl.c +++ b/vl.c @@ -1888,17 +1888,14 @@ static bool main_loop_should_exit(void) static void main_loop(void) { - bool nonblocking; - int last_io = 0; #ifdef CONFIG_PROFILER int64_t ti; #endif do { - nonblocking = tcg_enabled() && last_io > 0; #ifdef CONFIG_PROFILER ti = profile_getclock(); #endif - last_io = main_loop_wait(nonblocking); + main_loop_wait(false); #ifdef CONFIG_PROFILER dev_time += profile_getclock() - ti; #endif