- Timestamp:
- Oct 15, 2008 12:23:56 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/mp-r0drv-nt.cpp
r9609 r13272 87 87 RTDECL(RTCPUID) RTMpGetMaxCpuId(void) 88 88 { 89 /** @todo use KeQueryMaximumProcessorCount on vista+ */ 89 90 return MAXIMUM_PROCESSORS - 1; 90 91 } … … 108 109 { 109 110 /* Cannot easily distinguish between online and offline cpus. */ 110 /** @todo online/present cpu stuff must be corrected for proper W2K8 support. */ 111 /** @todo online/present cpu stuff must be corrected for proper W2K8 support 112 * (KeQueryMaximumProcessorCount). */ 111 113 return RTMpIsCpuOnline(idCpu); 112 114 } … … 115 117 RTDECL(PRTCPUSET) RTMpGetSet(PRTCPUSET pSet) 116 118 { 117 /** @todo online/present cpu stuff must be corrected for proper W2K8 support. */ 119 /** @todo online/present cpu stuff must be corrected for proper W2K8 support 120 * (KeQueryMaximumProcessorCount). */ 118 121 return RTMpGetOnlineSet(pSet); 119 122 } … … 122 125 RTDECL(RTCPUID) RTMpGetCount(void) 123 126 { 124 /** @todo online/present cpu stuff must be corrected for proper W2K8 support. */ 127 /** @todo online/present cpu stuff must be corrected for proper W2K8 support 128 * (KeQueryMaximumProcessorCount). */ 125 129 return RTMpGetOnlineCount(); 126 130 }
Note:
See TracChangeset
for help on using the changeset viewer.