Changeset 52670 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Sep 10, 2014 11:04:10 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95990
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmapi.h
r49549 r52670 54 54 VMM_INT_DECL(int) PDMApicWriteMSR(PVM pVM, VMCPUID iCpu, uint32_t u32Reg, uint64_t u64Value); 55 55 VMM_INT_DECL(int) PDMApicReadMSR(PVM pVM, VMCPUID iCpu, uint32_t u32Reg, uint64_t *pu64Value); 56 VMM_INT_DECL(int) PDMApicGetTimerFreq(PVM pVM, uint64_t *pu64Value); 56 57 VMM_INT_DECL(int) PDMVmmDevHeapR3ToGCPhys(PVM pVM, RTR3PTR pv, RTGCPHYS *pGCPhys); 57 58 VMM_INT_DECL(bool) PDMVmmDevHeapIsEnabled(PVM pVM); -
trunk/include/VBox/vmm/pdmdev.h
r51508 r52670 1190 1190 DECLR3CALLBACKMEMBER(int, pfnLocalInterruptR3,(PPDMDEVINS pDevIns, uint8_t u8Pin, uint8_t u8Level)); 1191 1191 1192 /** 1193 * Get the APIC timer frequency (in Hz). 1194 * 1195 * @returns The frequency of the APIC timer. 1196 * @param pDevIns Device instance of the APIC. 1197 */ 1198 DECLR3CALLBACKMEMBER(uint64_t, pfnGetTimerFreqR3, (PPDMDEVINS pDevIns)); 1199 1192 1200 /** The name of the RC GetInterrupt entry point. */ 1193 1201 const char *pszGetInterruptRC; … … 1210 1218 /** The name of the RC LocalInterrupt entry point. */ 1211 1219 const char *pszLocalInterruptRC; 1220 /** The name of the RC GetTimerFreq entry point. */ 1221 const char *pszGetTimerFreqRC; 1212 1222 1213 1223 /** The name of the R0 GetInterrupt entry point. */ … … 1231 1241 /** The name of the R0 LocalInterrupt entry point. */ 1232 1242 const char *pszLocalInterruptR0; 1233 1243 /** The name of the R0 GetTimerFreq entry point. */ 1244 const char *pszGetTimerFreqR0; 1234 1245 } PDMAPICREG; 1235 1246 /** Pointer to an APIC registration structure. */
Note:
See TracChangeset
for help on using the changeset viewer.