mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-01-04 05:30:31 -07:00
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
1 changed files with 1 additions and 1 deletions
2
vl.c
2
vl.c
|
|
@ -2022,7 +2022,7 @@ static void main_loop(void)
|
|||
int64_t ti;
|
||||
#endif
|
||||
do {
|
||||
nonblocking = !kvm_enabled() && last_io > 0;
|
||||
nonblocking = !kvm_enabled() && !xen_enabled() && last_io > 0;
|
||||
#ifdef CONFIG_PROFILER
|
||||
ti = profile_getclock();
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue