Re: [Qemu-devel] [PATCH] monitor: Check whether TCG is enabled before running the "info jit" code

2017-04-26 Thread Dr. David Alan Gilbert
* Peter Maydell (peter.mayd...@linaro.org) wrote: > On 26 April 2017 at 09:18, Dr. David Alan Gilbert wrote: > > * Thomas Huth (th...@redhat.com) wrote: > >> The "info jit" command currently aborts on Mac OS X with the message > >> "qemu_mutex_lock: Invalid argument" when

Re: [Qemu-devel] [PATCH] monitor: Check whether TCG is enabled before running the "info jit" code

2017-04-26 Thread Peter Maydell
On 26 April 2017 at 09:18, Dr. David Alan Gilbert wrote: > * Thomas Huth (th...@redhat.com) wrote: >> The "info jit" command currently aborts on Mac OS X with the message >> "qemu_mutex_lock: Invalid argument" when running with "-M accel=qtest". >> We should only call into

Re: [Qemu-devel] [PATCH] monitor: Check whether TCG is enabled before running the "info jit" code

2017-04-26 Thread Dr. David Alan Gilbert
* Thomas Huth (th...@redhat.com) wrote: > The "info jit" command currently aborts on Mac OS X with the message > "qemu_mutex_lock: Invalid argument" when running with "-M accel=qtest". > We should only call into the TCG code here if TCG has really been > enabled and initialized. > >

[Qemu-devel] [PATCH] monitor: Check whether TCG is enabled before running the "info jit" code

2017-04-25 Thread Thomas Huth
The "info jit" command currently aborts on Mac OS X with the message "qemu_mutex_lock: Invalid argument" when running with "-M accel=qtest". We should only call into the TCG code here if TCG has really been enabled and initialized. Signed-off-by: Thomas Huth --- monitor.c | 5