- Timestamp:
- Aug 11, 2008 10:17:14 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/solaris/mp-solaris.cpp
r11273 r11324 209 209 return sysconf(_SC_NPROCESSORS_ONLN); 210 210 } 211 212 213 RTDECL(PRTCPUSET) RTMpGetOnlineSet(PRTCPUSET pSet) 214 { 215 /** @todo fix this! */ 216 RTCpuSetEmpty(pSet); 217 RTCPUID cMax = RTMpGetOnlineCount(); 218 while (cMax-- > 0) 219 RTCpuSetAdd(pSet, cMax); 220 return pSet; 221 } 222
Note:
See TracChangeset
for help on using the changeset viewer.