summaryrefslogtreecommitdiffstats
path: root/stubs/vm-stop.c
blob: 7f8a9da8a598164b7eaad4a5b1df2a4b2147ae5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "qemu/osdep.h"

#include "sysemu/runstate.h"
void qemu_system_vmstop_request_prepare(void)
{
    abort();
}

void qemu_system_vmstop_request(RunState state)
{
    abort();
}