unicorn/qemu/include/hw/xen/xen.h
Lioncash a268815478
include: Add stubbed xen function
Will allow us to not comment out code all the time for xen checks (ideally)
2018-02-20 08:29:58 -05:00

14 lines
203 B
C

#ifndef QEMU_HW_XEN_H
#define QEMU_HW_XEN_H
#include "qemu-common.h"
#include "exec/cpu-common.h"
static inline bool xen_enabled(void)
{
// Unicorn: Always return false
return false;
}
#endif