]> Git Repo - qemu.git/blob - tests/libqos/libqos-pc.c
Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2015-02-18' into staging
[qemu.git] / tests / libqos / libqos-pc.c
1 #include "libqos/libqos-pc.h"
2 #include "libqos/malloc-pc.h"
3
4 static QOSOps qos_ops = {
5     .init_allocator = pc_alloc_init_flags,
6     .uninit_allocator = pc_alloc_uninit
7 };
8
9 QOSState *qtest_pc_boot(const char *cmdline_fmt, ...)
10 {
11     QOSState *qs;
12     va_list ap;
13
14     va_start(ap, cmdline_fmt);
15     qs = qtest_vboot(&qos_ops, cmdline_fmt, ap);
16     va_end(ap);
17
18     return qs;
19 }
20
21 void qtest_pc_shutdown(QOSState *qs)
22 {
23     return qtest_shutdown(qs);
24 }
This page took 0.024881 seconds and 4 git commands to generate.