Changeset 1423 in vbox
- Timestamp:
- Mar 12, 2007 12:53:29 PM (18 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/SELM.cpp
r1418 r1423 165 165 166 166 STAM_REG(pVM, &pVM->selm.s.StatHyperSelsChanged, STAMTYPE_COUNTER, "/SELM/HyperSels/Changed", STAMUNIT_OCCURENCES, "The number of times we had to relocate our hypervisor selectors."); 167 STAM_REG(pVM, &pVM->selm.s.StatScanForHyperSels, STAMTYPE_COUNTER, "/SELM/HyperSels/Scan", STAMUNIT_OCCURENCES, "The number of times we had find free hypervisor selectors."); 167 168 168 169 /* … … 905 906 906 907 Log(("Internal SELM GDT conflict: use non-present entries\n")); 908 STAM_COUNTER_INC(&pVM->selm.s.StatScanForHyperSels); 907 909 while (pGDTE > pGDTEStart && iGDT < SELM_HYPER_SEL_MAX) 908 910 { -
trunk/src/VBox/VMM/SELMInternal.h
r1416 r1423 166 166 /** The number of times we had to relocate our hypervisor selectors. */ 167 167 STAMCOUNTER StatHyperSelsChanged; 168 /** The number of times we had find free hypervisor selectors. */ 169 STAMCOUNTER StatScanForHyperSels; 168 170 } SELM, *PSELM; 169 171
Note:
See TracChangeset
for help on using the changeset viewer.