Changeset 54415 in vbox for trunk/include
- Timestamp:
- Feb 24, 2015 3:26:17 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98516
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r54411 r54415 946 946 # define RTMpCpuIdFromSetIndex RT_MANGLER(RTMpCpuIdFromSetIndex) 947 947 # define RTMpCpuIdToSetIndex RT_MANGLER(RTMpCpuIdToSetIndex) 948 # define RTMpCurSetIndex RT_MANGLER(RTMpCurSetIndex) 949 # define RTMpCurSetIndexAndId RT_MANGLER(RTMpCurSetIndexAndId) 948 950 # define RTMpGetArraySize RT_MANGLER(RTMpGetArraySize) 949 951 # define RTMpGetCount RT_MANGLER(RTMpGetCount) -
trunk/include/iprt/mp.h
r54408 r54415 48 48 */ 49 49 RTDECL(RTCPUID) RTMpCpuId(void); 50 51 /** 52 * Get the CPU set index of the CPU executing the call. 53 * 54 * Same scheduling warnings as for RTMpCpuId(). 55 * 56 * @returns CPU set index. 57 */ 58 RTDECL(int) RTMpCurSetIndex(void); 59 60 /** 61 * Get the CPU set index and identifier of the CPU executing the call. 62 * 63 * Same scheduling warnings as for RTMpCpuId(). 64 * 65 * @returns CPU set index. 66 * @param pidCpu Where to return the CPU identifier. (not optional) 67 */ 68 RTDECL(int) RTMpCurSetIndexAndId(PRTCPUID pidCpu); 50 69 51 70 /**
Note:
See TracChangeset
for help on using the changeset viewer.