Changeset 36232 in vbox for trunk/src/VBox/Runtime/r3/darwin
- Timestamp:
- Mar 9, 2011 4:41:09 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70453
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/darwin/mp-darwin.cpp
r33540 r36232 70 70 RTDECL(int) RTMpCpuIdToSetIndex(RTCPUID idCpu) 71 71 { 72 return idCpu < rtMpDarwinMaxCpus() ? idCpu : -1;72 return idCpu < RTCPUSET_MAX_CPUS && idCpu < rtMpDarwinMaxCpus() ? idCpu : -1; 73 73 } 74 74
Note:
See TracChangeset
for help on using the changeset viewer.