Changeset 105555 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Aug 1, 2024 9:58:54 AM (9 months ago)
- svn:sync-xref-src-repo-rev:
- 164226
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r105477 r105555 11318 11318 pMachine->COMGETTER(VMProcessPriority)(&enmVMPriority); 11319 11319 11320 VMExecutionEngine_T enmExecEngine = VMExecutionEngine_NotSet; 11321 pMachine->COMGETTER(VMExecutionEngine)(&enmExecEngine); 11322 11320 11323 /* 11321 11324 * Create the VM … … 11333 11336 vrc = pVMM->pfnVMR3Create(cCpus, 11334 11337 pConsole->mpVmm2UserMethods, 11335 0 /*fFlags*/, 11338 enmExecEngine == VMExecutionEngine_Interpreter 11339 || enmExecEngine == VMExecutionEngine_Recompiler /** @todo NativeApi too? */ 11340 ? VMCREATE_F_DRIVERLESS : 0, 11336 11341 Console::i_genericVMSetErrorCallback, 11337 11342 &pTask->mErrorMsg,
Note:
See TracChangeset
for help on using the changeset viewer.