681c28a33e
Clean up includes so that osdep.h is included first and headers which it implies are not included manually. This commit was created with scripts/clean-includes. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Eric Blake <eblake@redhat.com> Tested-by: Eric Blake <eblake@redhat.com>
31 lines
594 B
C
31 lines
594 B
C
#include "qemu/osdep.h"
|
|
#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_vboot(const char *cmdline_fmt, va_list ap)
|
|
{
|
|
return qtest_vboot(&qos_ops, cmdline_fmt, ap);
|
|
}
|
|
|
|
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);
|
|
}
|