Changeset 44509 in vbox for trunk/include/VBox
- Timestamp:
- Feb 1, 2013 1:11:17 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r44508 r44509 820 820 * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines. 821 821 * @param uTagSrc The IRQ tag and source (for tracing). 822 * @remarks Caller enters the PDM critical section. 822 823 */ 823 824 DECLR3CALLBACKMEMBER(void, pfnSetIrqR3,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc)); … … 829 830 * @param pDevIns Device instance of the PIC. 830 831 * @param puTagSrc Where to return the IRQ tag and source. 832 * @remarks Caller enters the PDM critical section. 831 833 */ 832 834 DECLR3CALLBACKMEMBER(int, pfnGetInterruptR3,(PPDMDEVINS pDevIns, uint32_t *puTagSrc)); … … 1041 1043 * @param idCpu The VCPU Id. 1042 1044 * @param puTagSrc Where to return the tag source. 1045 * @remarks Caller enters the PDM critical section 1043 1046 */ 1044 1047 DECLR3CALLBACKMEMBER(int, pfnGetInterruptR3,(PPDMDEVINS pDevIns, VMCPUID idCpu, uint32_t *puTagSrc)); … … 1050 1053 * @param pDevIns Device instance of the APIC. 1051 1054 * @param idCpu The VCPU Id. 1055 * @remarks Unlike the other callbacks, the PDM lock may not always be entered 1056 * prior to calling this method. 1052 1057 */ 1053 1058 DECLR3CALLBACKMEMBER(bool, pfnHasPendingIrqR3,(PPDMDEVINS pDevIns, VMCPUID idCpu)); … … 1059 1064 * @param idCpu The VCPU Id. 1060 1065 * @param u64Base The new base. 1066 * @remarks Caller enters the PDM critical section. 1061 1067 */ 1062 1068 DECLR3CALLBACKMEMBER(void, pfnSetBaseR3,(PPDMDEVINS pDevIns, VMCPUID idCpu, uint64_t u64Base)); … … 1068 1074 * @param pDevIns Device instance of the APIC. 1069 1075 * @param idCpu The VCPU Id. 1076 * @remarks Caller enters the PDM critical section. 1070 1077 */ 1071 1078 DECLR3CALLBACKMEMBER(uint64_t, pfnGetBaseR3,(PPDMDEVINS pDevIns, VMCPUID idCpu)); … … 1077 1084 * @param idCpu The VCPU id. 1078 1085 * @param u8TPR The new TPR. 1086 * @remarks Caller enters the PDM critical section. 1079 1087 */ 1080 1088 DECLR3CALLBACKMEMBER(void, pfnSetTPRR3,(PPDMDEVINS pDevIns, VMCPUID idCpu, uint8_t u8TPR)); … … 1086 1094 * @param pDevIns Device instance of the APIC. 1087 1095 * @param idCpu VCPU id 1096 * @remarks Caller enters the PDM critical section. 1088 1097 */ 1089 1098 DECLR3CALLBACKMEMBER(uint8_t, pfnGetTPRR3,(PPDMDEVINS pDevIns, VMCPUID idCpu)); … … 1135 1144 * @param u8TriggerMode See APIC implementation. 1136 1145 * @param uTagSrc The IRQ tag and source (for tracing). 1146 * @remarks Caller enters the PDM critical section 1137 1147 */ 1138 1148 DECLR3CALLBACKMEMBER(int, pfnBusDeliverR3,(PPDMDEVINS pDevIns, uint8_t u8Dest, uint8_t u8DestMode, uint8_t u8DeliveryMode, … … 1150 1160 * @param u8Level The level. 1151 1161 * @param uTagSrc The IRQ tag and source (for tracing). 1162 * @remarks Caller enters the PDM critical section 1152 1163 */ 1153 1164 DECLR3CALLBACKMEMBER(int, pfnLocalInterruptR3,(PPDMDEVINS pDevIns, uint8_t u8Pin, uint8_t u8Level));
Note:
See TracChangeset
for help on using the changeset viewer.