diff options
author | Veronia Bahaa <veroniabahaa@gmail.com> | 2016-03-20 19:16:19 +0200 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:55:13 -0600 |
commit | 2c594eb97b17410fd65f3fed4af7355389ccb5b0 (patch) | |
tree | 9131d5e751c88007773d32b32a38ab835a7bb08c /tests | |
parent | 89492b974896cf041e346da9ca03cfb5b94423e0 (diff) | |
download | hqemu-2c594eb97b17410fd65f3fed4af7355389ccb5b0.zip hqemu-2c594eb97b17410fd65f3fed4af7355389ccb5b0.tar.gz |
util: move declarations out of qemu-common.h
Move declarations out of qemu-common.h for functions declared in
utils/ files: e.g. include/qemu/path.h for utils/path.c.
Move inline functions out of qemu-common.h and into new files (e.g.
include/qemu/bcd.h)
Signed-off-by: Veronia Bahaa <veroniabahaa@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qom-test.c | 1 | ||||
-rw-r--r-- | tests/tcg/linux-test.c | 1 | ||||
-rw-r--r-- | tests/test-cutils.c | 3 | ||||
-rw-r--r-- | tests/test-xbzrle.c | 1 |
4 files changed, 4 insertions, 2 deletions
diff --git a/tests/qom-test.c b/tests/qom-test.c index 3c6cfca..bd5cdde 100644 --- a/tests/qom-test.c +++ b/tests/qom-test.c @@ -11,6 +11,7 @@ #include <glib.h> #include "qemu-common.h" +#include "qemu/cutils.h" #include "libqtest.h" #include "qapi/qmp/types.h" diff --git a/tests/tcg/linux-test.c b/tests/tcg/linux-test.c index 1c6c013..5070d31 100644 --- a/tests/tcg/linux-test.c +++ b/tests/tcg/linux-test.c @@ -39,6 +39,7 @@ #include <dirent.h> #include <setjmp.h> #include <sys/shm.h> +#include "qemu/cutils.h" #define TESTPATH "/tmp/linux-test.tmp" #define TESTPORT 7654 diff --git a/tests/test-cutils.c b/tests/test-cutils.c index 398700d..fb8f5b5 100644 --- a/tests/test-cutils.c +++ b/tests/test-cutils.c @@ -28,8 +28,7 @@ #include "qemu/osdep.h" #include <glib.h> -#include "qemu-common.h" - +#include "qemu/cutils.h" static void test_parse_uint_null(void) { diff --git a/tests/test-xbzrle.c b/tests/test-xbzrle.c index abd309d..49f6419 100644 --- a/tests/test-xbzrle.c +++ b/tests/test-xbzrle.c @@ -12,6 +12,7 @@ */ #include "qemu/osdep.h" #include "qemu-common.h" +#include "qemu/cutils.h" #include "include/migration/migration.h" #define PAGE_SIZE 4096 |