Changeset 56702 in vbox for trunk/src/VBox/HostDrivers/Support/darwin/SUPDrv-darwin.cpp
- Timestamp:
- Jun 30, 2015 3:01:59 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/darwin/SUPDrv-darwin.cpp
r56576 r56702 971 971 * Call the kernel. 972 972 */ 973 AssertLogRelMsg(!g_pVmxUseCount || *g_pVmxUseCount >= 0, 974 ("vmx_use_count=%d (@ %p, expected it to be a positive number\n", 975 *g_pVmxUseCount, g_pVmxUseCount)); 976 973 977 rc = host_vmxon(false /* exclusive */); 974 978 if (rc == VMX_OK) … … 987 991 else 988 992 { 993 AssertLogRelMsgReturn(!g_pVmxUseCount || *g_pVmxUseCount >= 1, 994 ("vmx_use_count=%d (@ %p, expected it to be a non-zero positive number\n", 995 *g_pVmxUseCount, g_pVmxUseCount), 996 VERR_WRONG_ORDER); 989 997 host_vmxoff(); 990 998 rc = VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.