i386 linux 2.6 timer fix

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1243 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2005-01-26 21:56:26 +00:00
parent 9191d4d19f
commit d79284e07a
1 changed files with 1 additions and 1 deletions

2
vl.c
View File

@ -922,7 +922,7 @@ static void init_timers(void)
sigaction(SIGALRM, &act, NULL);
itv.it_interval.tv_sec = 0;
itv.it_interval.tv_usec = 1000;
itv.it_interval.tv_usec = 999; /* for i386 kernel 2.6 to get 1 ms */
itv.it_value.tv_sec = 0;
itv.it_value.tv_usec = 10 * 1000;
setitimer(ITIMER_REAL, &itv, NULL);