Changeset 53327 in vbox for trunk/include/iprt/cpuset.h
- Timestamp:
- Nov 14, 2014 1:54:04 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpuset.h
r52582 r53327 67 67 pSet->bmSet[i] = UINT64_MAX; 68 68 return pSet; 69 } 70 71 72 /** 73 * Copies one set to another. 74 * 75 * @param pDst Pointer to the destination set. 76 * @param pSrc Pointer to the source set. 77 */ 78 DECLINLINE(void) RTCpuSetCopy(PRTCPUSET pDst, PRTCPUSET pSrc) 79 { 80 unsigned i; 81 for (i = 0; i < RT_ELEMENTS(pDst->bmSet); i++) 82 pDst->bmSet[i] = pSrc->bmSet[i]; 69 83 } 70 84
Note:
See TracChangeset
for help on using the changeset viewer.