No vm_start() on snapshot restore (fixes #29)

Actual vm_start() performed by caller in vl.c. This extra vm_start()
breaks "qemu -S" function in combination with snapshot loads.
This commit is contained in:
Steffen Schulz 2022-09-05 05:11:06 -07:00 committed by Sergej Schumilo
parent 4df041cd8e
commit d407bab254

View File

@ -347,7 +347,7 @@ static void fast_reload_create_from_snapshot(fast_reload_t* self, const char* fo
}
//fast_reload_restore(self);
vm_start();
//vm_start();
}
void fast_reload_create_from_file(fast_reload_t* self, const char* folder, bool lock_iothread){