qemu-patch-raspberry4/stubs/vm-stop.c
Kevin Wolf 5698346391 cpus: Add return value for vm_stop()
If flushing the block devices fails, return an error. The VM is stopped
anyway.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
2013-07-15 09:51:38 +02:00

8 lines
98 B
C

#include "qemu-common.h"
#include "sysemu/sysemu.h"
int vm_stop(RunState state)
{
abort();
}