Changeset 12104 in vbox for trunk/include/iprt/mp.h
- Timestamp:
- Sep 4, 2008 7:33:44 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mp.h
r10422 r12104 84 84 RTDECL(RTCPUID) RTMpGetMaxCpuId(void); 85 85 86 86 87 /** 87 88 * Checks if a CPU exists in the system or may possibly be hotplugged later. … … 109 110 RTDECL(RTCPUID) RTMpGetCount(void); 110 111 112 111 113 /** 112 114 * Gets set of the CPUs present that are currently online. … … 131 133 */ 132 134 RTDECL(bool) RTMpIsCpuOnline(RTCPUID idCpu); 135 136 137 /** 138 * Gets set of the CPUs present in the system. 139 * 140 * @returns pSet. 141 * @param pSet Where to put the set. 142 */ 143 RTDECL(PRTCPUSET) RTMpGetPresentSet(PRTCPUSET pSet); 144 145 /** 146 * Get the count of CPUs that are present in the system. 147 * 148 * @return The count. 149 */ 150 RTDECL(RTCPUID) RTMpGetPresentCount(void); 151 152 /** 153 * Checks if a CPU is present in the system. 154 * 155 * @returns true/false accordingly. 156 * @param idCpu The identifier of the CPU. 157 */ 158 RTDECL(bool) RTMpIsCpuPresent(RTCPUID idCpu); 159 133 160 134 161 /**
Note:
See TracChangeset
for help on using the changeset viewer.