Changeset 45728 in vbox for trunk/src/VBox/VMM/include/TRPMInternal.h
- Timestamp:
- Apr 25, 2013 12:08:17 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85283
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/TRPMInternal.h
r45531 r45728 96 96 RTINT offTRPMCPU; 97 97 98 /** IDT monitoring and sync flag (HWACC). */99 bool fDisableMonitoring; /** @todo r=bird: bool and 7 byte achPadding1. */100 101 98 /** Whether monitoring of the guest IDT is enabled or not. 102 99 * … … 114 111 115 112 /** Padding to get the IDTs at a 16 byte alignment. */ 116 uint8_t abPadding1[ 6];113 uint8_t abPadding1[7]; 117 114 /** IDTs. Aligned at 16 byte offset for speed. */ 118 115 VBOXIDTE aIdt[256]; … … 159 156 * pointer. */ 160 157 R3PTRTYPE(PSTAMCOUNTER) paStatForwardedIRQR3; 161 /** Statistics for interrupt handlers - R0 pointer. */162 R0PTRTYPE(PSTAMCOUNTER) paStatForwardedIRQR0;163 158 /** Statistics for interrupt handlers - RC pointer. */ 164 159 RCPTRTYPE(PSTAMCOUNTER) paStatForwardedIRQRC; … … 168 163 /** Host interrupt statistics (allocated on the hypervisor heap) - R3 ptr. */ 169 164 R3PTRTYPE(PSTAMCOUNTER) paStatHostIrqR3; 170 /** Host interrupt statistics (allocated on the hypervisor heap) - R0 ptr. */171 R0PTRTYPE(PSTAMCOUNTER) paStatHostIrqR0;172 165 #endif 173 166 } TRPM; … … 266 259 267 260 #ifdef IN_RING3 268 269 /** 270 * Clear passthrough interrupt gate handler (reset to default handler) 271 * 272 * @returns VBox status code. 273 * @param pVM Pointer to the VM. 274 * @param iTrap Trap/interrupt gate number. 275 */ 276 VMMR3DECL(int) trpmR3ClearPassThroughHandler(PVM pVM, unsigned iTrap); 277 261 int trpmR3ClearPassThroughHandler(PVM pVM, unsigned iTrap); 278 262 #endif 279 263
Note:
See TracChangeset
for help on using the changeset viewer.