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

/vbox/src/VBox/VMM/VMMR3/
H A DPDM.cpp308 uint64_t cNsElapsedNextLog; member in struct:PDMNOTIFYASYNCSTATS
1213 pThis->cNsElapsedNextLog = 0;
1289 if (cNsElapsed < pThis->cNsElapsedNextLog)
1292 if (pThis->cNsElapsedNextLog == 0)
1293 pThis->cNsElapsedNextLog = RT_NS_1SEC;
1294 else if (pThis->cNsElapsedNextLog >= RT_NS_1MIN / 2)
1295 pThis->cNsElapsedNextLog = RT_NS_1MIN;
1297 pThis->cNsElapsedNextLog *= 2;

Completed in 50 milliseconds