win32 compilation fix

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2111 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2006-08-17 09:43:50 +00:00
parent 3dc1cb3428
commit 4c279bdf3a

10
vl.c
View File

@ -4539,7 +4539,11 @@ void do_savevm(const char *name)
BlockDriverInfo bdi1, *bdi = &bdi1; BlockDriverInfo bdi1, *bdi = &bdi1;
QEMUFile *f; QEMUFile *f;
int saved_vm_running; int saved_vm_running;
#ifdef _WIN32
struct _timeb tb;
#else
struct timeval tv; struct timeval tv;
#endif
bs = get_bs_snapshots(); bs = get_bs_snapshots();
if (!bs) { if (!bs) {
@ -4567,9 +4571,15 @@ void do_savevm(const char *name)
} }
/* fill auxiliary fields */ /* fill auxiliary fields */
#ifdef _WIN32
_ftime(&tb);
sn->date_sec = tb.time;
sn->date_nsec = tb.millitm * 1000000;
#else
gettimeofday(&tv, NULL); gettimeofday(&tv, NULL);
sn->date_sec = tv.tv_sec; sn->date_sec = tv.tv_sec;
sn->date_nsec = tv.tv_usec * 1000; sn->date_nsec = tv.tv_usec * 1000;
#endif
sn->vm_clock_nsec = qemu_get_clock(vm_clock); sn->vm_clock_nsec = qemu_get_clock(vm_clock);
if (bdrv_get_info(bs, bdi) < 0 || bdi->vm_state_offset <= 0) { if (bdrv_get_info(bs, bdi) < 0 || bdi->vm_state_offset <= 0) {