Re: [Qemu-devel] [PATCH 1/3] qtest: Move accel code to accel/qtest.c

2019-04-22 Thread Thomas Huth
On 22/04/2019 23.04, Eduardo Habkost wrote: > QTest has two parts: the server (-qtest) and the accelerator > (-machine accel=qtest). The accelerator depends on CONFIG_POSIX > due to its usage of sigwait(), but the server doesn't. > > Move the accel code to accel/qtest.c. Later we will disable >

Re: [Qemu-devel] [PATCH 1/3] qtest: Move accel code to accel/qtest.c

2019-04-22 Thread Philippe Mathieu-Daudé
On 4/23/19 12:08 AM, Eduardo Habkost wrote: > On Mon, Apr 22, 2019 at 11:56:18PM +0200, Philippe Mathieu-Daudé wrote: >> Hi Eduardo, >> >> On 4/22/19 11:04 PM, Eduardo Habkost wrote: >>> QTest has two parts: the server (-qtest) and the accelerator >>> (-machine accel=qtest). The accelerator depend

Re: [Qemu-devel] [PATCH 1/3] qtest: Move accel code to accel/qtest.c

2019-04-22 Thread Eduardo Habkost
On Mon, Apr 22, 2019 at 11:56:18PM +0200, Philippe Mathieu-Daudé wrote: > Hi Eduardo, > > On 4/22/19 11:04 PM, Eduardo Habkost wrote: > > QTest has two parts: the server (-qtest) and the accelerator > > (-machine accel=qtest). The accelerator depends on CONFIG_POSIX > > due to its usage of sigwai

Re: [Qemu-devel] [PATCH 1/3] qtest: Move accel code to accel/qtest.c

2019-04-22 Thread Philippe Mathieu-Daudé
Hi Eduardo, On 4/22/19 11:04 PM, Eduardo Habkost wrote: > QTest has two parts: the server (-qtest) and the accelerator > (-machine accel=qtest). The accelerator depends on CONFIG_POSIX > due to its usage of sigwait(), but the server doesn't. > > Move the accel code to accel/qtest.c. Later we wi

[Qemu-devel] [PATCH 1/3] qtest: Move accel code to accel/qtest.c

2019-04-22 Thread Eduardo Habkost
QTest has two parts: the server (-qtest) and the accelerator (-machine accel=qtest). The accelerator depends on CONFIG_POSIX due to its usage of sigwait(), but the server doesn't. Move the accel code to accel/qtest.c. Later we will disable compilation of accel/qtest.c on non-POSIX systems. Sign