Changeset 60309 in vbox for trunk/include
- Timestamp:
- Apr 4, 2016 4:02:21 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106373
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r60307 r60309 1089 1089 * @param pDevIns Device instance of the APIC. 1090 1090 * @param pVCpu The cross context virtual CPU structure. 1091 * @param u64Base The new base. 1092 * @remarks Caller enters the PDM critical section. 1093 */ 1094 DECLR3CALLBACKMEMBER(VBOXSTRICTRC, pfnSetBaseMsrR3,(PPDMDEVINS pDevIns, PVMCPU pVCpu, uint64_t u64Base)); 1091 * @param u64BaseMsr The base MSR value. 1092 * @remarks Caller enters the PDM critical section (might not be the case with 1093 * the new APIC code) 1094 */ 1095 DECLR3CALLBACKMEMBER(VBOXSTRICTRC, pfnSetBaseMsrR3,(PPDMDEVINS pDevIns, PVMCPU pVCpu, uint64_t u64BaseMsr)); 1095 1096 1096 1097 /** … … 1109 1110 * @param pDevIns Device instance of the APIC. 1110 1111 * @param pVCpu The cross context virtual CPU structure. 1111 * @param u8T PRThe new TPR.1112 * @param u8Tpr The new TPR. 1112 1113 * @remarks Caller enters the PDM critical section. 1113 1114 */ 1114 DECLR3CALLBACKMEMBER(void, pfnSetTprR3,(PPDMDEVINS pDevIns, PVMCPU pVCpu, uint8_t u8T PR));1115 DECLR3CALLBACKMEMBER(void, pfnSetTprR3,(PPDMDEVINS pDevIns, PVMCPU pVCpu, uint8_t u8Tpr)); 1115 1116 1116 1117 /** … … 1163 1164 * @returns VBox status code. 1164 1165 * @param pDevIns Device instance of the APIC. 1165 * @param u 8DestThe destination mask.1166 * @param u 8DestModeThe destination mode, see XAPICDESTMODE.1167 * @param u 8DeliveryModeThe delivery mode, see XAPICDELIVERYMODE.1166 * @param uDest The destination mask. 1167 * @param uDestMode The destination mode, see XAPICDESTMODE. 1168 * @param uDeliveryMode The delivery mode, see XAPICDELIVERYMODE. 1168 1169 * @param uVector The interrupt vector. 1169 * @param u 8PolarityThe input pin polarity.1170 * @param u 8TriggerModeThe trigger mode, see XAPICTRIGGERMODE.1170 * @param uPolarity The input pin polarity. 1171 * @param uTriggerMode The trigger mode, see XAPICTRIGGERMODE. 1171 1172 * @param uTagSrc The IRQ tag and source (for tracing). 1172 1173 * @remarks Caller enters the PDM critical section. 1173 1174 */ 1174 DECLR3CALLBACKMEMBER(int, pfnBusDeliverR3,(PPDMDEVINS pDevIns, uint8_t u 8Dest, uint8_t u8DestMode, uint8_t u8DeliveryMode,1175 uint8_t iVector, uint8_t u8Polarity, uint8_t u8TriggerMode, uint32_t uTagSrc));1175 DECLR3CALLBACKMEMBER(int, pfnBusDeliverR3,(PPDMDEVINS pDevIns, uint8_t uDest, uint8_t uDestMode, uint8_t uDeliveryMode, 1176 uint8_t uVector, uint8_t uPolarity, uint8_t uTriggerMode, uint32_t uTagSrc)); 1176 1177 1177 1178 /** … … 1198 1199 * @returns The frequency of the APIC timer. 1199 1200 * @param pDevIns Device instance of the APIC. 1200 * @param pVCpu The cross context virtual CPU structure.1201 1201 */ 1202 1202 DECLR3CALLBACKMEMBER(uint64_t, pfnGetTimerFreqR3,(PPDMDEVINS pDevIns));
Note:
See TracChangeset
for help on using the changeset viewer.