- Timestamp:
- Aug 11, 2008 11:41:51 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/solaris/mp-solaris.cpp
r11330 r11331 193 193 RTDECL(int) RTMpCpuIdToSetIndex(RTCPUID idCpu) 194 194 { 195 return idCpu < RTCPUSET_MAX_CPUS ? idCpu : -1;195 return idCpu < RTCPUSET_MAX_CPUS ? (int)idCpu : -1; 196 196 } 197 197 … … 239 239 { 240 240 RTCpuSetEmpty(pSet); 241 int cCpus = RTMpGetCount() 241 int cCpus = RTMpGetCount(); 242 242 while (cCpus-- > 0) 243 243 RTCpuSetAdd(pSet, idCpu);
Note:
See TracChangeset
for help on using the changeset viewer.