mirror of https://github.com/xqemu/xqemu.git
(int64_t)UINT64_MAX is -1 and should not be assigned to nearest_delta_us, patch by Dan Kenigsberg.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3325 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
2b76bdc965
commit
49a9b72568
2
vl.c
2
vl.c
|
@ -1181,7 +1181,7 @@ static void host_alarm_handler(int host_signum)
|
||||||
|
|
||||||
static uint64_t qemu_next_deadline(void)
|
static uint64_t qemu_next_deadline(void)
|
||||||
{
|
{
|
||||||
int64_t nearest_delta_us = UINT64_MAX;
|
int64_t nearest_delta_us = INT64_MAX;
|
||||||
int64_t vmdelta_us;
|
int64_t vmdelta_us;
|
||||||
|
|
||||||
if (active_timers[QEMU_TIMER_REALTIME])
|
if (active_timers[QEMU_TIMER_REALTIME])
|
||||||
|
|
Loading…
Reference in New Issue