From 38e205a25b8f34916a4d3fdb7aef7424745fdd5a Mon Sep 17 00:00:00 2001 From: bellard Date: Tue, 6 Apr 2004 19:29:17 +0000 Subject: [PATCH] win32: do not use all cpu time git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@709 c046a42c-6fe2-441c-8c8c-71466251a162 --- vl.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vl.c b/vl.c index 1e1b5e3e63..84e8698897 100644 --- a/vl.c +++ b/vl.c @@ -1529,7 +1529,11 @@ int main_loop(void) timeout = 10; } -#ifndef _WIN32 +#ifdef _WIN32 + if (timeout > 0) + Sleep(timeout); +#else + /* poll any events */ /* XXX: separate device handlers from system ones */ pf = ufds;