Re: [Qemu-devel] [PATCH v5 4/4] hax: add Darwin support

2017-01-05 Thread Vincent Palatin
On Thu, Dec 22, 2016 at 10:49 AM, Paolo Bonzini wrote: > > > On 19/12/2016 17:24, Vincent Palatin wrote: >> diff --git a/cpus.c b/cpus.c >> index 0e01791..b8db313 100644 >> --- a/cpus.c >> +++ b/cpus.c >> @@ -1264,6 +1264,11 @@ static void qemu_cpu_kick_thread(CPUState *cpu) >> return; >>

Re: [Qemu-devel] [PATCH v5 4/4] hax: add Darwin support

2016-12-22 Thread Paolo Bonzini
On 19/12/2016 17:24, Vincent Palatin wrote: > diff --git a/cpus.c b/cpus.c > index 0e01791..b8db313 100644 > --- a/cpus.c > +++ b/cpus.c > @@ -1264,6 +1264,11 @@ static void qemu_cpu_kick_thread(CPUState *cpu) > return; > } > cpu->thread_kicked = true; > +#ifdef CONFIG_DARWIN >

[Qemu-devel] [PATCH v5 4/4] hax: add Darwin support

2016-12-19 Thread Vincent Palatin
Re-add the MacOSX/Darwin support: Use the Intel HAX is kernel-based hardware acceleration module (similar to KVM on Linux). Based on the original "target-i386: Add Intel HAX to android emulator" patch from David Chou from emu-2.2-release branch in the external/qemu-android repository. Signed-of