Changeset 92225 in vbox
- Timestamp:
- Nov 4, 2021 9:29:57 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/NEMR3.cpp
r92120 r92225 170 170 { 171 171 if (pVM->bMainExecutionEngine == VM_EXEC_ENGINE_NATIVE_API) 172 LogRel(("NEM: NEMR3Init: Active.\n")); 172 { 173 #ifdef RT_OS_WINDOWS /* The WHv* API is extremely slow at handling VM exits. The AppleHv and 174 KVM APIs are much faster, thus the different mode name. :-) */ 175 LogRel(("NEM:\n" 176 "NEM: NEMR3Init: Snail execution mode is active!\n" 177 "NEM: Note! VirtualBox is not able to run at its full potential in this execution mode.\n" 178 "NEM: To see VirtualBox run at max speed you need to disable all Windows features\n" 179 "NEM: making use of Hyper-V. That is a moving target, so google how and carefully\n" 180 "NEM: consider the consequences of disabling these features.\n" 181 "NEM:\n")); 182 #else 183 LogRel(("NEM:\n" 184 "NEM: NEMR3Init: Turtle execution mode is active!\n" 185 "NEM: Note! VirtualBox is not able to run at its full potential in this execution mode.\n" 186 "NEM:\n")); 187 #endif 188 } 173 189 else 174 190 {
Note:
See TracChangeset
for help on using the changeset viewer.