Changeset 39369 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- Nov 18, 2011 3:23:46 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevAPIC.cpp
r39306 r39369 1299 1299 if (dest_mode == 0) 1300 1300 { 1301 if (dest == 0xff) 1302 { 1303 /* was: mask = 0xff; - weird */ /** @todo check this; could this (1) differ on X2APIC and (2) actully mean a broadcast? */ 1304 for (VMCPUID iCpu = 0; iCpu < 8; iCpu++) 1305 VMCPUSET_ADD(pDstSet, iCpu); 1306 } 1301 if (dest == 0xff) /* The broadcast ID. */ 1302 VMCPUSET_FILL(pDstSet); 1307 1303 else 1308 1304 VMCPUSET_ADD(pDstSet, dest);
Note:
See TracChangeset
for help on using the changeset viewer.