mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
accel: Rename 'hax_vcpu' as 'accel' in CPUState
All accelerators will share a single opaque context in CPUState. Start by renaming 'hax_vcpu' as 'accel'. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20230624174121.11508-7-philmd@linaro.org>
This commit is contained in:
parent
83d0f7f95c
commit
6ecd2cd0dc
5 changed files with 17 additions and 17 deletions
|
@ -71,7 +71,7 @@ static void hax_start_vcpu_thread(CPUState *cpu)
|
|||
cpu->cpu_index);
|
||||
qemu_thread_create(cpu->thread, thread_name, hax_cpu_thread_fn,
|
||||
cpu, QEMU_THREAD_JOINABLE);
|
||||
assert(cpu->hax_vcpu);
|
||||
assert(cpu->accel);
|
||||
#ifdef _WIN32
|
||||
cpu->hThread = qemu_thread_get_handle(cpu->thread);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue