mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
Plumb the HAXM-based hardware acceleration support
Use the Intel HAX is kernel-based hardware acceleration module for Windows (similar to KVM on Linux). Based on the "target/i386: Add Intel HAX to android emulator" patch from David Chou <david.j.chou@intel.com> Signed-off-by: Vincent Palatin <vpalatin@chromium.org> Message-Id: <7b9cae28a0c379ab459c7a8545c9a39762bd394f.1484045952.git.vpalatin@chromium.org> [Drop hax_populate_ram stub. - Paolo] Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
47c1c8c12f
commit
b0cb0a66d6
11 changed files with 141 additions and 12 deletions
|
@ -497,8 +497,8 @@ HANDLE qemu_thread_get_handle(QemuThread *thread)
|
|||
|
||||
EnterCriticalSection(&data->cs);
|
||||
if (!data->exited) {
|
||||
handle = OpenThread(SYNCHRONIZE | THREAD_SUSPEND_RESUME, FALSE,
|
||||
thread->tid);
|
||||
handle = OpenThread(SYNCHRONIZE | THREAD_SUSPEND_RESUME |
|
||||
THREAD_SET_CONTEXT, FALSE, thread->tid);
|
||||
} else {
|
||||
handle = NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue