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/error-report.h"
13 #include "sysemu/hvf.h"
14 #include "sysemu/hvf_int.h"
16 void assert_hvf_ok(hv_return_t ret
)
18 if (ret
== HV_SUCCESS
) {
24 error_report("Error: HV_ERROR");
27 error_report("Error: HV_BUSY");
30 error_report("Error: HV_BAD_ARGUMENT");
33 error_report("Error: HV_NO_RESOURCES");
36 error_report("Error: HV_NO_DEVICE");
39 error_report("Error: HV_UNSUPPORTED");
42 error_report("Unknown Error");