2 * QEMU Hypervisor.framework support
4 * This work is licensed under the terms of the GNU GPL, version 2. See
5 * the COPYING file in the top-level directory.
7 * Contributions after 2012-01-13 are licensed under the terms of the
8 * GNU GPL, version 2 or (at your option) any later version.
11 #include "qemu/osdep.h"
12 #include "qemu-common.h"
13 #include "qemu/error-report.h"
14 #include "sysemu/hvf.h"
15 #include "sysemu/hvf_int.h"
17 void assert_hvf_ok(hv_return_t ret
)
19 if (ret
== HV_SUCCESS
) {
25 error_report("Error: HV_ERROR");
28 error_report("Error: HV_BUSY");
31 error_report("Error: HV_BAD_ARGUMENT");
34 error_report("Error: HV_NO_RESOURCES");
37 error_report("Error: HV_NO_DEVICE");
40 error_report("Error: HV_UNSUPPORTED");
43 error_report("Unknown Error");