diff options
author | John Snow <jsnow@redhat.com> | 2015-01-19 15:15:49 -0500 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2015-02-16 14:36:03 +0000 |
commit | af77f2cd7af1fa65a414c86767366bae95892e69 (patch) | |
tree | 69edfdbc9beffb74f38409edef30c6a143de25a0 /tests/libqos/malloc.h | |
parent | 21c7f3f74959f18c5feb9b44511cb1a965c25a36 (diff) | |
download | qemu-af77f2cd7af1fa65a414c86767366bae95892e69.tar.gz qemu-af77f2cd7af1fa65a414c86767366bae95892e69.tar.bz2 qemu-af77f2cd7af1fa65a414c86767366bae95892e69.zip |
libqos: Split apart pc_alloc_init
Move the list-specific initialization over into
malloc.c, to keep all of the list implementation
details within the same file.
The allocation and freeing of these structures are
now both back within the same layer.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 1421698563-6977-2-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.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/libqos/malloc.h b/tests/libqos/malloc.h index 465efeb8fb..677db7764b 100644 --- a/tests/libqos/malloc.h +++ b/tests/libqos/malloc.h @@ -50,4 +50,5 @@ void alloc_uninit(QGuestAllocator *allocator); 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); #endif |