Changeset 106951 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 12, 2024 9:46:29 AM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 165878
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/NEMR3.cpp
r106061 r106951 182 182 if (pVM->bMainExecutionEngine == VM_EXEC_ENGINE_NATIVE_API) 183 183 { 184 #ifdef RT_OS_WINDOWS /* The WHv* API is extremely slow at handling VM exits. The AppleHv and 185 KVM APIs are much faster, thus the different mode name. :-) */ 184 #ifndef VBOX_VMM_TARGET_ARMV8 /* NEM is the only option on ARM for now, so calling it turtle and snail mode 185 * is a bit unfair as long as we don't have a native hypervisor to compare against :). */ 186 # ifdef RT_OS_WINDOWS /* The WHv* API is extremely slow at handling VM exits. The AppleHv and 187 KVM APIs are much faster, thus the different mode name. :-) */ 186 188 LogRel(("NEM:\n" 187 189 "NEM: NEMR3Init: Snail execution mode is active!\n" … … 191 193 "NEM: consider the consequences of disabling these features.\n" 192 194 "NEM:\n")); 193 # else195 # else 194 196 LogRel(("NEM:\n" 195 197 "NEM: NEMR3Init: Turtle execution mode is active!\n" 196 198 "NEM: Note! VirtualBox is not able to run at its full potential in this execution mode.\n" 197 199 "NEM:\n")); 200 # endif 198 201 #endif 199 202 }
Note:
See TracChangeset
for help on using the changeset viewer.