Changeset 10418 in vbox for trunk/include/iprt
- Timestamp:
- Jul 9, 2008 1:45:07 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33077
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mp.h
r9611 r10418 56 56 * Converts a CPU identifier to a CPU set index. 57 57 * 58 * This may or may not validate the pre cense of the CPU.58 * This may or may not validate the presence of the CPU. 59 59 * 60 60 * @returns The CPU set index on success, -1 on failure. … … 66 66 * Converts a CPU set index to a a CPU identifier. 67 67 * 68 * This may or may not validate the pre cense of the CPU, so, use68 * This may or may not validate the presence of the CPU, so, use 69 69 * RTMpIsCpuPossible for that. 70 70 * … … 131 131 */ 132 132 RTDECL(bool) RTMpIsCpuOnline(RTCPUID idCpu); 133 134 /** 135 * Get the current CPU speed (in Mhz) of a CPU which is currently online. 136 * 137 * @returns CPU speed if CPU id is valid, 0 otherwise. 138 */ 139 RTDECL(uint32_t) RTMpGetCurFrequency(RTCPUID idCpu); 140 141 142 /** 143 * Get the maximum CPU speed (in Mhz) of a CPU which is currently online. 144 * 145 * @returns CPU speed if CPU id is valid, 0 otherwise. 146 */ 147 RTDECL(uint32_t) RTMpGetMaxFrequency(RTCPUID idCpu); 133 148 134 149
Note:
See TracChangeset
for help on using the changeset viewer.