mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-17 21:26:13 -07:00
added cpu_model parameter to cpu_init()
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3562 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
7d77bf2006
commit
aaed909a49
46 changed files with 320 additions and 324 deletions
5
exec.c
5
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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue