Changeset 43657 in vbox for trunk/include/VBox/vmm/pdmdev.h
- Timestamp:
- Oct 16, 2012 3:34:05 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 81423
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r43472 r43657 1078 1078 * @returns Pending interrupt number. 1079 1079 * @param pDevIns Device instance of the APIC. 1080 * @param idCpu The VCPU Id. 1080 1081 * @param puTagSrc Where to return the tag source. 1081 1082 */ 1082 DECLR3CALLBACKMEMBER(int, pfnGetInterruptR3,(PPDMDEVINS pDevIns, uint32_t *puTagSrc));1083 DECLR3CALLBACKMEMBER(int, pfnGetInterruptR3,(PPDMDEVINS pDevIns, VMCPUID idCpu, uint32_t *puTagSrc)); 1083 1084 1084 1085 /** … … 1087 1088 * @returns Pending interrupt yes/no 1088 1089 * @param pDevIns Device instance of the APIC. 1089 */ 1090 DECLR3CALLBACKMEMBER(bool, pfnHasPendingIrqR3,(PPDMDEVINS pDevIns)); 1090 * @param idCpu The VCPU Id. 1091 */ 1092 DECLR3CALLBACKMEMBER(bool, pfnHasPendingIrqR3,(PPDMDEVINS pDevIns, VMCPUID idCpu)); 1091 1093 1092 1094 /** … … 1094 1096 * 1095 1097 * @param pDevIns Device instance of the APIC. 1098 * @param idCpu The VCPU Id. 1096 1099 * @param u64Base The new base. 1097 1100 */ 1098 DECLR3CALLBACKMEMBER(void, pfnSetBaseR3,(PPDMDEVINS pDevIns, uint64_t u64Base));1101 DECLR3CALLBACKMEMBER(void, pfnSetBaseR3,(PPDMDEVINS pDevIns, VMCPUID idCpu, uint64_t u64Base)); 1099 1102 1100 1103 /** … … 1103 1106 * @returns Current base. 1104 1107 * @param pDevIns Device instance of the APIC. 1105 */ 1106 DECLR3CALLBACKMEMBER(uint64_t, pfnGetBaseR3,(PPDMDEVINS pDevIns)); 1108 * @param idCpu The VCPU Id. 1109 */ 1110 DECLR3CALLBACKMEMBER(uint64_t, pfnGetBaseR3,(PPDMDEVINS pDevIns, VMCPUID idCpu)); 1107 1111 1108 1112 /** … … 1110 1114 * 1111 1115 * @param pDevIns Device instance of the APIC. 1112 * @param idCpu VCPU id1116 * @param idCpu The VCPU id. 1113 1117 * @param u8TPR The new TPR. 1114 1118 */
Note:
See TracChangeset
for help on using the changeset viewer.