diff -r dd0c57d03fb3 vl.c --- a/vl.c Thu Nov 02 19:13:06 2006 -0600 +++ b/vl.c Thu Nov 02 19:13:41 2006 -0600 @@ -822,6 +822,7 @@ static void timer_save(QEMUFile *f, void } qemu_put_be64s(f, &cpu_ticks_offset); qemu_put_be64s(f, &ticks_per_sec); + qemu_put_be64s(f, &cpu_clock_offset); } static int timer_load(QEMUFile *f, void *opaque, int version_id) @@ -833,6 +834,7 @@ static int timer_load(QEMUFile *f, void } qemu_get_be64s(f, &cpu_ticks_offset); qemu_get_be64s(f, &ticks_per_sec); + qemu_get_be64s(f, &cpu_clock_offset); return 0; }