Changeset 10422 in vbox for trunk/include
- Timestamp:
- Jul 9, 2008 1:54:32 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mp.h
r10418 r10422 133 133 134 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. 135 * Get the current frequency of a CPU. 136 * 137 * The CPU must be online. 138 * 139 * @returns The frequency as MHz. 0 if the CPU is offline 140 * or the information is not available. 141 * @param idCpu The identifier of the CPU. 138 142 */ 139 143 RTDECL(uint32_t) RTMpGetCurFrequency(RTCPUID idCpu); … … 141 145 142 146 /** 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. 147 * Get the maximum frequency of a CPU. 148 * 149 * The CPU must be online. 150 * 151 * @returns The frequency as MHz. 0 if the CPU is offline 152 * or the information is not available. 153 * @param idCpu The identifier of the CPU. 146 154 */ 147 155 RTDECL(uint32_t) RTMpGetMaxFrequency(RTCPUID idCpu);
Note:
See TracChangeset
for help on using the changeset viewer.