Changeset 20037 in vbox for trunk/include/VBox
- Timestamp:
- May 26, 2009 1:25:48 PM (16 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmapi.h
r20001 r20037 50 50 VMMDECL(int) PDMApicSetBase(PVM pVM, uint64_t u64Base); 51 51 VMMDECL(int) PDMApicGetBase(PVM pVM, uint64_t *pu64Base); 52 VMMDECL(int) PDMApicSetTPREx(PVMCPU pVCpu, uint8_t u8TPR, bool fMMIOFormat); 53 VMMDECL(int) PDMApicGetTPREx(PVMCPU pVCpu, uint8_t *pu8TPR, bool fMMIOFormat, bool *pfPending); 52 54 VMMDECL(int) PDMApicSetTPR(PVMCPU pVCpu, uint8_t u8TPR); 53 55 VMMDECL(int) PDMApicGetTPR(PVMCPU pVCpu, uint8_t *pu8TPR, bool *pfPending); -
trunk/include/VBox/pdmdev.h
r20001 r20037 985 985 * @param idCpu VCPU id 986 986 * @param u8TPR The new TPR. 987 */ 988 DECLR3CALLBACKMEMBER(void, pfnSetTPRR3,(PPDMDEVINS pDevIns, VMCPUID idCpu, uint8_t u8TPR)); 987 * @param fMMIOFormat Update as if MMIO write to ApicBase + 0x80 988 */ 989 DECLR3CALLBACKMEMBER(void, pfnSetTPRR3,(PPDMDEVINS pDevIns, VMCPUID idCpu, uint8_t u8TPR, bool fMMIOFormat)); 989 990 990 991 /** … … 994 995 * @param pDevIns Device instance of the APIC. 995 996 * @param idCpu VCPU id 996 */ 997 DECLR3CALLBACKMEMBER(uint8_t, pfnGetTPRR3,(PPDMDEVINS pDevIns, VMCPUID idCpu)); 997 * @param fMMIOFormat Return as if MMIO read from ApicBase + 0x80 998 */ 999 DECLR3CALLBACKMEMBER(uint8_t, pfnGetTPRR3,(PPDMDEVINS pDevIns, VMCPUID idCpu, bool fMMIOFormat)); 998 1000 999 1001 /**
Note:
See TracChangeset
for help on using the changeset viewer.