]>
Commit | Line | Data |
---|---|---|
8a0743cf AL |
1 | /* |
2 | * libqos malloc support for PC | |
3 | * | |
4 | * Copyright IBM, Corp. 2012-2013 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[email protected]> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | |
10 | * See the COPYING file in the top-level directory. | |
11 | */ | |
12 | ||
13 | #ifndef LIBQOS_MALLOC_PC_H | |
14 | #define LIBQOS_MALLOC_PC_H | |
15 | ||
16 | #include "libqos/malloc.h" | |
17 | ||
18 | QGuestAllocator *pc_alloc_init(void); | |
292be092 MM |
19 | QGuestAllocator *pc_alloc_init_flags(QAllocOpts flags); |
20 | void pc_alloc_uninit(QGuestAllocator *allocator); | |
8a0743cf AL |
21 | |
22 | #endif |