mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
Revert "cpu: add APIs to allocate/free CPU environment"
This reverts commit e2a7f28693
.
This was not supposed to go upstream yet. Reverting.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
114e0af84e
commit
cde0a63ad7
2 changed files with 0 additions and 65 deletions
34
qom/cpu.c
34
qom/cpu.c
|
@ -89,40 +89,6 @@ out:
|
|||
return cpu;
|
||||
}
|
||||
|
||||
void *cpu_alloc_env(CPUState *cpu)
|
||||
{
|
||||
CPUClass *cc = CPU_GET_CLASS(cpu);
|
||||
|
||||
return cc->alloc_env ? cc->alloc_env(cpu) : NULL;
|
||||
}
|
||||
|
||||
void cpu_get_env(CPUState *cpu, void *env)
|
||||
{
|
||||
CPUClass *cc = CPU_GET_CLASS(cpu);
|
||||
|
||||
if (cc->get_env) {
|
||||
cc->get_env(cpu, env);
|
||||
}
|
||||
}
|
||||
|
||||
void cpu_set_env(CPUState *cpu, void *env)
|
||||
{
|
||||
CPUClass *cc = CPU_GET_CLASS(cpu);
|
||||
|
||||
if (cc->set_env) {
|
||||
cc->set_env(cpu, env);
|
||||
}
|
||||
}
|
||||
|
||||
void cpu_free_env(CPUState *cpu, void *env)
|
||||
{
|
||||
CPUClass *cc = CPU_GET_CLASS(cpu);
|
||||
|
||||
if (cc->free_env) {
|
||||
cc->free_env(cpu, env);
|
||||
}
|
||||
}
|
||||
|
||||
bool cpu_paging_enabled(const CPUState *cpu)
|
||||
{
|
||||
CPUClass *cc = CPU_GET_CLASS(cpu);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue