Searched defs:tsUpdatedLast (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/VMM/include/
H A DPDMNetShaperInternal.h40 volatile uint64_t tsUpdatedLast; member in struct:PDMNSBWGROUP
/vbox/src/VBox/VMM/VMMR3/
H A DPDMAsyncCompletion.cpp143 volatile uint64_t tsUpdatedLast; member in struct:PDMACBWMGR
675 pBwMgr->tsUpdatedLast = RTTimeSystemNanoTS();
739 uint64_t tsUpdatedLast = ASMAtomicUoReadU64(&pBwMgr->tsUpdatedLast); local
741 if (tsNow - tsUpdatedLast >= (1000*1000*1000))
743 if (ASMAtomicCmpXchgU64(&pBwMgr->tsUpdatedLast, tsNow, tsUpdatedLast))
760 *pmsWhenNext = ((1000*1000*1000) - (tsNow - tsUpdatedLast)) / (1000*1000);

Completed in 73 milliseconds