diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2019-04-22 18:04:46 -0300 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2019-05-02 16:56:33 +0200 |
commit | 3fe13fe16e2147ccbab037ace60e2bd3831094fd (patch) | |
tree | 3433518ffb0ae3fca44a37c6bdec6b97c7848a36 /accel/Makefile.objs | |
parent | 5f55d64b38cd20c97c31929f1566f38e2c5ae44b (diff) | |
download | qemu-3fe13fe16e2147ccbab037ace60e2bd3831094fd.zip |
qtest: Move accel code to accel/qtest.c
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.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20190422210448.2488-2-ehabkost@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
[thuth: added fixup for MAINTAINERS file]
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'accel/Makefile.objs')
-rw-r--r-- | accel/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/accel/Makefile.objs b/accel/Makefile.objs index c3718a10c5..2a5ed46940 100644 --- a/accel/Makefile.objs +++ b/accel/Makefile.objs @@ -1,4 +1,5 @@ obj-$(CONFIG_SOFTMMU) += accel.o +obj-$(CONFIG_SOFTMMU) += qtest.o obj-$(CONFIG_KVM) += kvm/ obj-$(CONFIG_TCG) += tcg/ obj-y += stubs/ |