Changeset 93207 in vbox for trunk/src/VBox/VMM/VMMR3/NEMR3.cpp
- Timestamp:
- Jan 12, 2022 7:14:56 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149228
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/NEMR3.cpp
r93115 r93207 122 122 123 123 #ifdef RT_OS_WINDOWS 124 # ifndef VBOX_WITH_PGM_NEM_MODE 125 124 126 /** @cfgm{/NEM/UseRing0Runloop, bool, true} 125 127 * Whether to use the ring-0 runloop (if enabled in the build) or the ring-3 one. 126 128 * The latter is generally slower. This option serves as a way out in case 127 129 * something breaks in the ring-0 loop. */ 128 # ifdef NEM_WIN_USE_RING0_RUNLOOP_BY_DEFAULT130 # ifdef NEM_WIN_USE_RING0_RUNLOOP_BY_DEFAULT 129 131 bool fUseRing0Runloop = true; 130 # else132 # else 131 133 bool fUseRing0Runloop = false; 132 # endif134 # endif 133 135 rc = CFGMR3QueryBoolDef(pCfgNem, "UseRing0Runloop", &fUseRing0Runloop, fUseRing0Runloop); 134 136 AssertLogRelRCReturn(rc, rc); 135 137 pVM->nem.s.fUseRing0Runloop = fUseRing0Runloop; 138 # endif 136 139 #endif 137 140
Note:
See TracChangeset
for help on using the changeset viewer.