aboutsummaryrefslogtreecommitdiff
path: root/tests/libqos/libqos-pc.c
blob: bbace893fb1a3b89c37691f1ecaa439b5ce6463e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "libqos/libqos-pc.h"
#include "libqos/malloc-pc.h"

static QOSOps qos_ops = {
    .init_allocator = pc_alloc_init_flags,
    .uninit_allocator = pc_alloc_uninit
};

QOSState *qtest_pc_boot(const char *cmdline_fmt, ...)
{
    QOSState *qs;
    va_list ap;

    va_start(ap, cmdline_fmt);
    qs = qtest_vboot(&qos_ops, cmdline_fmt, ap);
    va_end(ap);

    return qs;
}

void qtest_pc_shutdown(QOSState *qs)
{
    return qtest_shutdown(qs);
}