Changeset 19739 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- May 15, 2009 2:31:49 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevAPIC.cpp
r19650 r19739 352 352 DECLINLINE(void) cpuSetInterrupt(APICDeviceInfo* dev, APICState *s) 353 353 { 354 Log2(("apic: setting interrupt flag \n"));354 Log2(("apic: setting interrupt flag for cpu %d\n", getCpuFromLapic(dev, s))); 355 355 dev->CTX_SUFF(pApicHlp)->pfnSetInterruptFF(dev->CTX_SUFF(pDevIns), 356 356 getCpuFromLapic(dev, s)); … … 1450 1450 } 1451 1451 #ifdef DEBUG_APIC 1452 Log((" APIC read: %08x = %08x\n", (uint32_t)addr, val));1452 Log(("CPU%d: APIC read: %08x = %08x\n", s->phys_id, (uint32_t)addr, val)); 1453 1453 #endif 1454 1454 return val; … … 1475 1475 1476 1476 #ifdef DEBUG_APIC 1477 Log((" APIC write: %08x = %08x\n", (uint32_t)addr, val));1477 Log(("CPU%d: APIC write: %08x = %08x\n", s->phys_id, (uint32_t)addr, val)); 1478 1478 #endif 1479 1479 … … 2036 2036 APICState *s = getLapic(dev); 2037 2037 2038 Log((" apicMMIORead CPU%d at %llx\n", s->phys_id, (uint64_t)GCPhysAddr));2038 Log(("CPU%d: apicMMIORead at %llx\n", s->phys_id, (uint64_t)GCPhysAddr)); 2039 2039 2040 2040 /** @todo: add LAPIC range validity checks (different LAPICs can theoretically have … … 2088 2088 APICState *s = getLapic(dev); 2089 2089 2090 Log((" apicMMIOWrite CPU%dat %llx\n", s->phys_id, (uint64_t)GCPhysAddr));2090 Log(("CPU%d: apicMMIOWrite at %llx\n", s->phys_id, (uint64_t)GCPhysAddr)); 2091 2091 2092 2092 /** @todo: add LAPIC range validity checks (multiple LAPICs can theoretically have
Note:
See TracChangeset
for help on using the changeset viewer.