[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 04/19] system/qtest: Restrict QTest API to system emulation
From: |
Thomas Huth |
Subject: |
[PULL 04/19] system/qtest: Restrict QTest API to system emulation |
Date: |
Wed, 20 Dec 2023 10:40:50 +0100 |
From: Philippe Mathieu-Daudé <philmd@linaro.org>
Outside of system emulation, only qtest_enabled() can be used.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20231212113016.29808-3-philmd@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
include/sysemu/qtest.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/sysemu/qtest.h b/include/sysemu/qtest.h
index 85f05b0e46..b5d5fd3463 100644
--- a/include/sysemu/qtest.h
+++ b/include/sysemu/qtest.h
@@ -23,6 +23,7 @@ static inline bool qtest_enabled(void)
return qtest_allowed;
}
+#ifndef CONFIG_USER_ONLY
void qtest_send_prefix(CharBackend *chr);
void G_GNUC_PRINTF(2, 3) qtest_sendf(CharBackend *chr, const char *fmt, ...);
void qtest_set_command_cb(bool (*pc_cb)(CharBackend *chr, gchar **words));
@@ -35,5 +36,6 @@ void qtest_server_set_send_handler(void (*send)(void *, const
char *),
void qtest_server_inproc_recv(void *opaque, const char *buf);
int64_t qtest_get_virtual_clock(void);
+#endif
#endif
--
2.43.0
- [PULL 00/19] First batch of misc patches for QEMU 9.0, Thomas Huth, 2023/12/20
- [PULL 04/19] system/qtest: Restrict QTest API to system emulation,
Thomas Huth <=
- [PULL 01/19] hw: Add compat machines for 9.0, Thomas Huth, 2023/12/20
- [PULL 02/19] MAINTAINERS: Add some more vmware-related files to the corresponding section, Thomas Huth, 2023/12/20
- [PULL 03/19] system/qtest: Include missing 'hw/core/cpu.h' header, Thomas Huth, 2023/12/20
- [PULL 07/19] hw/s390x/ipl: Remove unused 'exec/exec-all.h' included header, Thomas Huth, 2023/12/20
- [PULL 05/19] hw/ppc/spapr_hcall: Remove unused 'exec/exec-all.h' included header, Thomas Huth, 2023/12/20
- [PULL 06/19] hw/misc/mips_itu: Remove unnecessary 'exec/exec-all.h' header, Thomas Huth, 2023/12/20
- [PULL 09/19] docs/system/arm: Fix for rename of type "xlnx.bbram-ctrl", Thomas Huth, 2023/12/20
- [PULL 10/19] hw: Replace anti-social QOM type names (again), Thomas Huth, 2023/12/20
- [PULL 11/19] memory: Remove "qemu:" prefix from the "qemu:ram-discard-manager" type name, Thomas Huth, 2023/12/20
- [PULL 08/19] target: Restrict 'sysemu/reset.h' to system emulation, Thomas Huth, 2023/12/20