Changeset 56375 in vbox for trunk/src/VBox/HostDrivers/Support/darwin
- Timestamp:
- Jun 11, 2015 7:01:17 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100968
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/darwin/SUPDrv-darwin.cpp
r56357 r56375 363 363 { 364 364 /* 365 * The VMX stuff - required (for raw-mode). 365 * The VMX stuff - required with raw-mode (in theory for 64-bit on 366 * 32-bit too, but we never did that on darwin). 366 367 */ 367 368 int rc1 = RTR0DbgKrnlInfoQuerySymbol(hKrnlInfo, NULL, "vmx_resume", (void **)&g_pfnVmxResume); … … 379 380 g_pfnVmxSuspend = NULL; 380 381 g_pVmxUseCount = NULL; 382 #ifdef VBOX_WITH_RAW_MODE 381 383 rc = VERR_SYMBOL_NOT_FOUND; 384 #endif 382 385 } 383 386 … … 907 910 int rc; 908 911 if ( version_major >= 10 /* 10 = 10.6.x = Snow Leopard */ 912 # ifdef VBOX_WITH_RAW_MODE 909 913 && g_pfnVmxSuspend 910 914 && g_pfnVmxResume 911 && g_pVmxUseCount) 915 && g_pVmxUseCount 916 # endif 917 ) 912 918 { 913 919 if (fEnable)
Note:
See TracChangeset
for help on using the changeset viewer.