Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20150727' into staging
[qemu.git] / tests / libqos / libqos.h
blobe1f14ea6fbfef403119c977cb1eb4f02167a03a1
1 #ifndef __libqos_h
2 #define __libqos_h
4 #include "libqtest.h"
5 #include "libqos/pci.h"
6 #include "libqos/malloc-pc.h"
8 typedef struct QOSOps {
9 QGuestAllocator *(*init_allocator)(QAllocOpts);
10 void (*uninit_allocator)(QGuestAllocator *);
11 } QOSOps;
13 typedef struct QOSState {
14 QTestState *qts;
15 QGuestAllocator *alloc;
16 QOSOps *ops;
17 } QOSState;
19 QOSState *qtest_vboot(QOSOps *ops, const char *cmdline_fmt, va_list ap);
20 QOSState *qtest_boot(QOSOps *ops, const char *cmdline_fmt, ...);
21 void qtest_shutdown(QOSState *qs);
22 void mkimg(const char *file, const char *fmt, unsigned size_mb);
23 void mkqcow2(const char *file, unsigned size_mb);
24 void set_context(QOSState *s);
25 void migrate(QOSState *from, QOSState *to, const char *uri);
26 void prepare_blkdebug_script(const char *debug_fn, const char *event);
28 static inline uint64_t qmalloc(QOSState *q, size_t bytes)
30 return guest_alloc(q->alloc, bytes);
33 static inline void qfree(QOSState *q, uint64_t addr)
35 guest_free(q->alloc, addr);
38 #endif