]> git.proxmox.com Git - qemu.git/blobdiff - exec.c
added cpu_model parameter to cpu_init()
[qemu.git] / exec.c
diff --git a/exec.c b/exec.c
index b49e520c18e6383952dd691af4b3d7dff8b0ae69..7987803634f67fb10da2e3d6422a33a7d04c4235 100644 (file)
--- a/exec.c
+++ b/exec.c
@@ -1314,6 +1314,8 @@ void cpu_abort(CPUState *env, const char *fmt, ...)
 
 CPUState *cpu_copy(CPUState *env)
 {
+#if 0
+    /* XXX: broken, must be handled by each CPU */
     CPUState *new_env = cpu_init();
     /* preserve chaining and index */
     CPUState *next_cpu = new_env->next_cpu;
@@ -1322,6 +1324,9 @@ CPUState *cpu_copy(CPUState *env)
     new_env->next_cpu = next_cpu;
     new_env->cpu_index = cpu_index;
     return new_env;
+#else
+    return NULL;
+#endif
 }
 
 #if !defined(CONFIG_USER_ONLY)