Changeset 64281 in vbox for trunk/src/VBox/Runtime/generic/mppresent-generic-online.cpp
- Timestamp:
- Oct 15, 2016 4:46:29 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 111296
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/mppresent-generic-online.cpp
r64268 r64281 1 1 /* $Id$ */ 2 2 /** @file 3 * IPRT - Multiprocessor, Stubs for the RTMp*Present* API .3 * IPRT - Multiprocessor, Stubs for the RTMp*Present* API mapping to RTMp*Online. 4 4 */ 5 5 … … 35 35 RTDECL(PRTCPUSET) RTMpGetPresentSet(PRTCPUSET pSet) 36 36 { 37 return RTMpGet Set(pSet);37 return RTMpGetOnlineSet(pSet); 38 38 } 39 39 RT_EXPORT_SYMBOL(RTMpGetPresentSet); … … 42 42 RTDECL(RTCPUID) RTMpGetPresentCount(void) 43 43 { 44 return RTMpGet Count();44 return RTMpGetOnlineCount(); 45 45 } 46 46 RT_EXPORT_SYMBOL(RTMpGetPresentCount); … … 49 49 RTDECL(RTCPUID) RTMpGetPresentCoreCount(void) 50 50 { 51 return RTMpGet CoreCount();51 return RTMpGetOnlineCoreCount(); 52 52 } 53 53 RT_EXPORT_SYMBOL(RTMpGetPresentCoreCount); … … 56 56 RTDECL(bool) RTMpIsCpuPresent(RTCPUID idCpu) 57 57 { 58 return RTMpIsCpu Possible(idCpu);58 return RTMpIsCpuOnline(idCpu); 59 59 } 60 60 RT_EXPORT_SYMBOL(RTMpIsCpuPresent);
Note:
See TracChangeset
for help on using the changeset viewer.