Changeset 35073 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- Dec 14, 2010 1:14:07 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPIC.cpp
r34697 r35073 136 136 /** Pointer to the PIC RC helpers. */ 137 137 PCPDMPICHLPRC pPicHlpRC; 138 /** Number of release log entries. Used to prevent flooding. */ 139 uint32_t cRelLogEntries; 140 uint32_t u32AlignmentPadding; 138 141 #ifdef VBOX_WITH_STATISTICS 139 142 STAMCOUNTER StatSetIrqGC; … … 489 492 AssertReleaseMsgFailed(("single mode not supported")); 490 493 if (val & 0x08) 491 AssertReleaseMsgFailed(("level sensitive irq not supported")); 494 if (pThis->cRelLogEntries++ < 64) 495 LogRel(("pic_write: Level sensitive IRQ setting ignored.\n")); 492 496 } else if (val & 0x08) { 493 497 if (val & 0x04) … … 944 948 pThis->aPics[0].pDevInsRC = PDMDEVINS_2_RCPTR(pDevIns); 945 949 pThis->aPics[1].pDevInsRC = PDMDEVINS_2_RCPTR(pDevIns); 950 pThis->cRelLogEntries = 0; 946 951 947 952 /*
Note:
See TracChangeset
for help on using the changeset viewer.