summaryrefslogtreecommitdiff
path: root/tests/libqos/malloc.h
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2015-01-19 15:15:53 -0500
committerStefan Hajnoczi <stefanha@redhat.com>2015-02-16 14:36:03 +0000
commitfa02e6084f727191e15fc6b2d1328c4fae874741 (patch)
tree5830cd68f8334fa06e9afa55b9a8e373b26e4f20 /tests/libqos/malloc.h
parentf1518d1192a1a9387f881919897fbb0101ad3426 (diff)
downloadqemu-fa02e6084f727191e15fc6b2d1328c4fae874741.tar.gz
qemu-fa02e6084f727191e15fc6b2d1328c4fae874741.tar.bz2
qemu-fa02e6084f727191e15fc6b2d1328c4fae874741.zip
libqos: add alloc_init_flags
Allow a generic interface to alloc_init_flags, not just through pc_alloc_init_flags. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Message-id: 1421698563-6977-6-git-send-email-jsnow@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'tests/libqos/malloc.h')
-rw-r--r--tests/libqos/malloc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/libqos/malloc.h b/tests/libqos/malloc.h
index 677db7764b..7b2954784f 100644
--- a/tests/libqos/malloc.h
+++ b/tests/libqos/malloc.h
@@ -51,4 +51,6 @@ uint64_t guest_alloc(QGuestAllocator *allocator, size_t size);
void guest_free(QGuestAllocator *allocator, uint64_t addr);
QGuestAllocator *alloc_init(uint64_t start, uint64_t end);
+QGuestAllocator *alloc_init_flags(QAllocOpts flags,
+ uint64_t start, uint64_t end);
#endif