- Timestamp:
- Feb 13, 2015 12:22:29 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98255
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/TM.cpp
r54087 r54195 774 774 775 775 STAM_REG(pVM, &pVM->tm.s.StatTimerCallbackSetFF, STAMTYPE_COUNTER, "/TM/CallbackSetFF", STAMUNIT_OCCURENCES, "The number of times the timer callback set FF."); 776 STAM_REG(pVM, &pVM->tm.s.StatTimerCallback, STAMTYPE_COUNTER, "/TM/Callback", STAMUNIT_OCCURENCES, "The number of times the timer callback is invoked."); 776 777 777 778 STAM_REG(pVM, &pVM->tm.s.StatTSCCatchupLE010, STAMTYPE_COUNTER, "/TM/TSC/Intercept/CatchupLE010", STAMUNIT_OCCURENCES, "In catch-up mode, 10% or lower."); … … 2018 2019 2019 2020 AssertCompile(TMCLOCK_MAX == 4); 2021 STAM_COUNTER_INC(&pVM->tm.s.StatTimerCallback); 2022 2020 2023 #ifdef DEBUG_Sander /* very annoying, keep it private. */ 2021 2024 if (VMCPU_FF_IS_SET(pVCpuDst, VMCPU_FF_TIMER)) … … 2038 2041 REMR3NotifyTimerPending(pVM, pVCpuDst); 2039 2042 #endif 2040 VMR3NotifyCpuFFU(pVCpuDst->pUVCpu, VMNOTIFYFF_FLAGS_DONE_REM /** @todo | VMNOTIFYFF_FLAGS_POKE ?*/);2043 VMR3NotifyCpuFFU(pVCpuDst->pUVCpu, VMNOTIFYFF_FLAGS_DONE_REM | VMNOTIFYFF_FLAGS_POKE); 2041 2044 STAM_COUNTER_INC(&pVM->tm.s.StatTimerCallbackSetFF); 2042 2045 } -
trunk/src/VBox/VMM/include/TMInternal.h
r54087 r54195 653 653 /** The timer callback. */ 654 654 STAMCOUNTER StatTimerCallbackSetFF; 655 STAMCOUNTER StatTimerCallback; 655 656 656 657 /** Calls to TMCpuTickSet. */
Note:
See TracChangeset
for help on using the changeset viewer.