Changeset 10661 in vbox for trunk/include/VBox
- Timestamp:
- Jul 15, 2008 2:21:04 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33371
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmapi.h
r10521 r10661 100 100 101 101 /** 102 * Set the TPR (task priority register ?).102 * Set the TPR (task priority register). 103 103 * 104 104 * @returns VBox status code. … … 109 109 110 110 /** 111 * Get the TPR (task priority register ?).111 * Get the TPR (task priority register). 112 112 * 113 113 * @returns The current TPR. 114 114 * @param pVM VM handle. 115 115 * @param pu8TPR Where to store the TRP. 116 */ 117 PDMDECL(int) PDMApicGetTPR(PVM pVM, uint8_t *pu8TPR); 116 * @param pfPending Pending state (out). 117 */ 118 PDMDECL(int) PDMApicGetTPR(PVM pVM, uint8_t *pu8TPR, bool *pfPending); 118 119 119 120 -
trunk/include/VBox/pdmdev.h
r10492 r10661 968 968 969 969 /** 970 * Set the TPR (task priority register ?).970 * Set the TPR (task priority register). 971 971 * 972 972 * @param pDevIns Device instance of the APIC. … … 976 976 977 977 /** 978 * Get the TPR (task priority register ?).978 * Get the TPR (task priority register). 979 979 * 980 980 * @returns The current TPR. 981 981 * @param pDevIns Device instance of the APIC. 982 * @param pfPending Pending interrupt state (out). 982 983 */ 983 984 DECLR3CALLBACKMEMBER(uint8_t, pfnGetTPRHC,(PPDMDEVINS pDevIns));
Note:
See TracChangeset
for help on using the changeset viewer.