Changeset 48697 in vbox
- Timestamp:
- Sep 26, 2013 1:02:55 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r48695 r48697 1177 1177 /** @todo restrict this to nehalem. */ 1178 1178 PVM pVM = pVCpu->CTX_SUFF(pVM); /* Note! Not sweating the 4-bit core count limit on westmere. */ 1179 *puValue = pVM->cCpus & 0xffff| ((pVM->cCpus & 0xffff) << 16);1179 *puValue = (pVM->cCpus & 0xffff) | ((pVM->cCpus & 0xffff) << 16); 1180 1180 break; 1181 1181 }
Note:
See TracChangeset
for help on using the changeset viewer.