Hi, Folks,
AFAIK, QEMU supports SMP, but by using one thread to execute the
translated blocks of different CPU in an interleaving way. This makes the
SMP emulation very slow. I am wondering what are difficulties to use
multit-thread to emulate the SMP, e.g. using one thread to execute the
transl
void do_is_emulation(Monitor *mon, const QDict *qdict, QObject
**ret_data)
+{
+ CPUState *env = mon_get_cpu();
+ if(env->is_in_emulation)
+monitor_printf(mon, "Emulating now\n");
+ else
+monitor_printf(mon, "Virtualizing now\n");
+}
+
Thanks for the help
d then run into QEMU
emulator mode. However, I got an error, "qemu: fatal: invalid tss
type". I don't know exactly where is the problem.
Thanks for helping me working this out. I am really stuck into this problem.
regards,
Wenhao
On Tue, Mar 30, 2010 at 1:22 AM, Juan Quintela
Hi, all,
I am working with switching QEMU from running in KVM mode to QEMU
emulatoin mode dynamically.
Intuitively, if the snapshot created using savevm in kvm mode can be used
by the loadvm command in QEMU emulator mode, the switchment could makes use
of this. I tried to do so. However, it