Changeset 46639 in vbox for trunk/include
- Timestamp:
- Jun 18, 2013 5:33:09 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86523
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r46593 r46639 901 901 # define RTMpGetMaxFrequency RT_MANGLER(RTMpGetMaxFrequency) 902 902 # define RTMpGetOnlineCount RT_MANGLER(RTMpGetOnlineCount) 903 # define RTMpGetOnlineCoreCount RT_MANGLER(RTMpGetOnlineCoreCount) 903 904 # define RTMpGetOnlineSet RT_MANGLER(RTMpGetOnlineSet) 904 905 # define RTMpGetPresentCount RT_MANGLER(RTMpGetPresentCount) 906 # define RTMpGetPresentCoreCount RT_MANGLER(RTMpGetPresentCoreCount) 905 907 # define RTMpGetPresentSet RT_MANGLER(RTMpGetPresentSet) 906 908 # define RTMpGetSet RT_MANGLER(RTMpGetSet) -
trunk/include/iprt/mp.h
r46636 r46639 141 141 142 142 /** 143 * Get the count of physical CPU cores in the system with one or more online 144 * threads. 145 * 146 * @returns The number of online cores. 147 */ 148 RTDECL(RTCPUID) RTMpGetCoreOnlineCount(void); 149 150 /** 143 151 * Checks if a CPU is online or not. 144 152 * … … 163 171 */ 164 172 RTDECL(RTCPUID) RTMpGetPresentCount(void); 173 174 /** 175 * Get the count of physical CPU cores present in the system. 176 * 177 * @returns The number of cores. 178 */ 179 RTDECL(RTCPUID) RTMpGetPresentCoreCount(void); 165 180 166 181 /**
Note:
See TracChangeset
for help on using the changeset viewer.