Changeset 26158 in vbox for trunk/include
- Timestamp:
- Feb 2, 2010 6:05:43 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57172
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmdev.h
r26157 r26158 2304 2304 * @param pTime Where to store the time. 2305 2305 */ 2306 DECLR3CALLBACKMEMBER(PRTTIMESPEC, pfn UTCNow,(PPDMDEVINS pDevIns, PRTTIMESPEC pTime));2306 DECLR3CALLBACKMEMBER(PRTTIMESPEC, pfnTMUtcNow,(PPDMDEVINS pDevIns, PRTTIMESPEC pTime)); 2307 2307 2308 2308 /** … … 3774 3774 3775 3775 /** 3776 * @copydoc PDMDEVHLPR3::pfn UTCNow3777 */ 3778 DECLINLINE(PRTTIMESPEC) PDMDevHlp UTCNow(PPDMDEVINS pDevIns, PRTTIMESPEC pTime)3779 { 3780 return pDevIns->pDevHlpR3->pfn UTCNow(pDevIns, pTime);3776 * @copydoc PDMDEVHLPR3::pfnTMUtcNow 3777 */ 3778 DECLINLINE(PRTTIMESPEC) PDMDevHlpTMUtcNow(PPDMDEVINS pDevIns, PRTTIMESPEC pTime) 3779 { 3780 return pDevIns->pDevHlpR3->pfnTMUtcNow(pDevIns, pTime); 3781 3781 } 3782 3782 -
trunk/include/VBox/tm.h
r26112 r26158 258 258 VMMR3DECL(void) TMR3TimerQueuesDo(PVM pVM); 259 259 VMM_INT_DECL(void) TMR3VirtualSyncFF(PVM pVM, PVMCPU pVCpu); 260 VMM_INT_DECL(PRTTIMESPEC) TMR3U TCNow(PVM pVM, PRTTIMESPEC pTime);260 VMM_INT_DECL(PRTTIMESPEC) TMR3UtcNow(PVM pVM, PRTTIMESPEC pTime); 261 261 /** @} */ 262 262 #endif /* IN_RING3 */
Note:
See TracChangeset
for help on using the changeset viewer.