Changeset 73285 in vbox for trunk/include/VBox
- Timestamp:
- Jul 21, 2018 1:49:30 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123892
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r73203 r73285 1209 1209 * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines. 1210 1210 * @param uTagSrc The IRQ tag and source (for tracing). 1211 * 1211 1212 * @remarks Caller enters the PDM critical section 1213 * Actually, as per 2018-07-21 this isn't true (bird). 1212 1214 */ 1213 1215 DECLR3CALLBACKMEMBER(void, pfnSetIrqR3,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc)); … … 1226 1228 * @param uValue Request value. 1227 1229 * @param uTagSrc The IRQ tag and source (for tracing). 1230 * 1228 1231 * @remarks Caller enters the PDM critical section 1232 * Actually, as per 2018-07-21 this isn't true (bird). 1229 1233 */ 1230 1234 DECLR3CALLBACKMEMBER(void, pfnSendMsiR3,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, uint32_t uValue, uint32_t uTagSrc)); … … 1239 1243 * Set the EOI for an interrupt vector. 1240 1244 * 1241 * @returns VBox status code. 1245 * @returns Strict VBox status code - only the following informational status codes: 1246 * @retval VINF_IOM_R3_MMIO_WRITE if the I/O APIC lock is contenteded and we're in R0 or RC.2 1247 * @retval VINF_SUCCESS 1248 * 1242 1249 * @param pDevIns Device instance of the I/O APIC. 1243 1250 * @param u8Vector The vector. 1251 * 1244 1252 * @remarks Caller enters the PDM critical section 1253 * Actually, as per 2018-07-21 this isn't true (bird). 1245 1254 */ 1246 1255 DECLR3CALLBACKMEMBER(int, pfnSetEoiR3,(PPDMDEVINS pDevIns, uint8_t u8Vector));
Note:
See TracChangeset
for help on using the changeset viewer.