summaryrefslogtreecommitdiffstats
path: root/exec.c
diff options
context:
space:
mode:
authorths2007-12-09 03:22:57 +0100
committerths2007-12-09 03:22:57 +0100
commit01ba98161f954621bcf557ad8d5a0838d18000a1 (patch)
tree9f95161d17b12c2f2617b9441b8653891ee9b041 /exec.c
parentRemove broken ds1225y init, it is useless on this machine anyway. (diff)
downloadqemu-01ba98161f954621bcf557ad8d5a0838d18000a1.tar.gz
qemu-01ba98161f954621bcf557ad8d5a0838d18000a1.tar.xz
qemu-01ba98161f954621bcf557ad8d5a0838d18000a1.zip
Handle cpu_model in copy_cpu(), by Kirill A. Shutemov.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3778 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/exec.c b/exec.c
index 046e967395..3fe340ae74 100644
--- a/exec.c
+++ b/exec.c
@@ -1317,9 +1317,7 @@ 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();
+ CPUState *new_env = cpu_init(env->cpu_model_str);
/* preserve chaining and index */
CPUState *next_cpu = new_env->next_cpu;
int cpu_index = new_env->cpu_index;
@@ -1327,9 +1325,6 @@ 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)