Changeset 10520 in vbox for trunk/src/VBox/VMM/VMMAll/PDMAll.cpp
- Timestamp:
- Jul 11, 2008 12:46:31 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAll.cpp
r10492 r10520 188 188 189 189 /** 190 * Check if the APIC has a pending interrupt/if a TPR change would active one 191 * 192 * @returns Pending interrupt yes/no190 * Check if the APIC has a pending interrupt/if a TPR change would active one. 191 * 192 * @returns VINF_SUCCESS or VERR_PDM_NO_APIC_INSTANCE. 193 193 * @param pDevIns Device instance of the APIC. 194 * @param pfPending Pending state (out) 194 * @param pfPending Pending state (out). 195 195 */ 196 196 PDMDECL(int) PDMApicHasPendingIrq(PVM pVM, bool *pfPending) … … 206 206 return VERR_PDM_NO_APIC_INSTANCE; 207 207 } 208 208 209 209 210 /**
Note:
See TracChangeset
for help on using the changeset viewer.