Changeset 6289 in vbox
- Timestamp:
- Jan 9, 2008 12:47:53 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27147
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/GVMMR0.cpp
r5999 r6289 107 107 GVMHANDLE aHandles[128]; 108 108 109 /** The number of VMs that means we no longer considers ourselves along on a CPU/Core.110 * @gcfgm /GVMM/cVMsMeansCompany 32-bit 0..UINT32_MAX109 /** @gcfgm{/GVMM/cVMsMeansCompany, 32-bit, 0, UINT32_MAX, 1} 110 * The number of VMs that means we no longer consider ourselves alone on a CPU/Core. 111 111 */ 112 112 uint32_t cVMsMeansCompany; 113 /** The minimum sleep time for when we're alone, in nano seconds.114 * @gcfgm /GVMM/MinSleepAlone 32-bit 0..100000000113 /** @gcfgm{/GVMM/MinSleepAlone,32-bit, 0, 100000000, 750000, ns} 114 * The minimum sleep time for when we're alone, in nano seconds. 115 115 */ 116 116 uint32_t nsMinSleepAlone; 117 /** The minimum sleep time for when we've got company, in nano seconds.118 * @gcfgm /GVMM/MinSleepCompany 32-bit 0..100000000117 /** @gcfgm{/GVMM/MinSleepCompany,32-bit,0, 100000000, 15000, ns} 118 * The minimum sleep time for when we've got company, in nano seconds. 119 119 */ 120 120 uint32_t nsMinSleepCompany; 121 /** The limit for the first round of early wakeups, given in nano seconds.122 * @gcfgm /GVMM/EarlyWakeUp1 32-bit 0..100000000121 /** @gcfgm{/GVMM/EarlyWakeUp1, 32-bit, 0, 100000000, 25000, ns} 122 * The limit for the first round of early wakeups, given in nano seconds. 123 123 */ 124 124 uint32_t nsEarlyWakeUp1; 125 /** The limit for the second round of early wakeups, given in nano seconds.126 * @gcfgm /GVMM/EarlyWakeUp2 32-bit 0..100000000125 /** @gcfgm{/GVMM/EarlyWakeUp2, 32-bit, 0, 100000000, 50000, ns} 126 * The limit for the second round of early wakeups, given in nano seconds. 127 127 */ 128 128 uint32_t nsEarlyWakeUp2;
Note:
See TracChangeset
for help on using the changeset viewer.