Changeset 14351 in vbox for trunk/src/VBox
- Timestamp:
- Nov 19, 2008 1:38:31 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39564
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/TRPM.cpp
r13830 r14351 679 679 } 680 680 681 #ifdef VBOX_WITH_STATISTICS 681 682 pVM->trpm.s.paStatForwardedIRQRC += offDelta; 682 683 pVM->trpm.s.paStatForwardedIRQR0 = MMHyperR3ToR0(pVM, pVM->trpm.s.paStatForwardedIRQR3); 684 #endif 683 685 } 684 686 -
trunk/src/VBox/VMM/TRPMInternal.h
r13636 r14351 181 181 STAMCOUNTER StatTrap0dRdTsc; /**< Number of RDTSC #GPs. */ 182 182 183 #ifdef VBOX_WITH_STATISTICS 183 184 /* R3: Statistics for interrupt handlers (allocated on the hypervisor heap). */ 184 185 R3PTRTYPE(PSTAMCOUNTER) paStatForwardedIRQR3; … … 187 188 /* RC: Statistics for interrupt handlers (allocated on the hypervisor heap). */ 188 189 RCPTRTYPE(PSTAMCOUNTER) paStatForwardedIRQRC; 190 #endif 189 191 } TRPM; 190 192 #pragma pack() -
trunk/src/VBox/VMM/TRPMInternal.mac
r13635 r14351 75 75 .StatTrap0dRdTsc resb STAMCOUNTER_size 76 76 77 %ifdef VBOX_WITH_STATISTICS 77 78 .paStatForwardedIRQR3 RTR3PTR_RES 1 78 79 .paStatForwardedIRQR0 RTR0PTR_RES 1 79 80 .paStatForwardedIRQRC RTRCPTR_RES 1 81 %endif 80 82 endstruc 81 83
Note:
See TracChangeset
for help on using the changeset viewer.