mirror of https://github.com/xqemu/xqemu.git
main_loop: do not set nonblocking if xen_enabled()
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> CC: qemu-stable@nongnu.org
This commit is contained in:
parent
49fa9881b2
commit
a7d4207d37
2
vl.c
2
vl.c
|
@ -2022,7 +2022,7 @@ static void main_loop(void)
|
||||||
int64_t ti;
|
int64_t ti;
|
||||||
#endif
|
#endif
|
||||||
do {
|
do {
|
||||||
nonblocking = !kvm_enabled() && last_io > 0;
|
nonblocking = !kvm_enabled() && !xen_enabled() && last_io > 0;
|
||||||
#ifdef CONFIG_PROFILER
|
#ifdef CONFIG_PROFILER
|
||||||
ti = profile_getclock();
|
ti = profile_getclock();
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue