From e776bffb53973619e93e805fa441bd5f3d999e27 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Thu, 19 Apr 2012 18:52:35 +0000 Subject: qtest: add dummy functions for user emulators Allow qtest to be used also in files used for user emulators by introducing dummy functions. Signed-off-by: Blue Swirl --- qtest.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'qtest.h') diff --git a/qtest.h b/qtest.h index 1478343ff..723a4f953 100644 --- a/qtest.h +++ b/qtest.h @@ -16,6 +16,7 @@ #include "qemu-common.h" +#if !defined(CONFIG_USER_ONLY) extern int qtest_allowed; extern const char *qtest_chrdev; extern const char *qtest_log; @@ -31,5 +32,22 @@ static inline int qtest_available(void) } int qtest_init(void); +#else +static inline bool qtest_enabled(void) +{ + return false; +} + +static inline int qtest_available(void) +{ + return 0; +} + +static inline int qtest_init(void) +{ + return 0; +} + +#endif #endif -- cgit v1.2.3