Changeset 63523 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Aug 16, 2016 6:46:55 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrvGip.cpp
r62664 r63523 1819 1819 cCpus = RTMpGetArraySize(); 1820 1820 if ( cCpus > RTCPUSET_MAX_CPUS 1821 || cCpus > 256 /* ApicId is used for the mappings */) 1821 #if RTCPUSET_MAX_CPUS != 256 1822 || cCpus > 256 /* ApicId is used for the mappings */ 1823 #endif 1824 ) 1822 1825 { 1823 1826 SUPR0Printf("VBoxDrv: Too many CPUs (%u) for the GIP (max %u)\n", cCpus, RT_MIN(RTCPUSET_MAX_CPUS, 256));
Note:
See TracChangeset
for help on using the changeset viewer.