Changeset 38942 in vbox
- Timestamp:
- Oct 5, 2011 1:17:23 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/VMInternal.h
r38941 r38942 169 169 170 170 171 #ifdef IN_RING3 172 171 173 /** 172 174 * VM internal data kept in the UVM. … … 188 190 volatile uint32_t cUvmRefs; 189 191 190 # ifdef VBOX_WITH_STATISTICS192 # ifdef VBOX_WITH_STATISTICS 191 193 /** Number of VMR3ReqAlloc returning a new packet. */ 192 194 STAMCOUNTER StatReqAllocNew; … … 207 209 * onto the list. */ 208 210 STAMCOUNTER StatReqPushBackRaces; 209 # endif211 # endif 210 212 211 213 /** Pointer to the support library session. … … 305 307 RTUUID Uuid; 306 308 } VMINTUSERPERVM; 307 # ifdef VBOX_WITH_STATISTICS309 # ifdef VBOX_WITH_STATISTICS 308 310 AssertCompileMemberAlignment(VMINTUSERPERVM, StatReqAllocNew, 8); 309 # endif311 # endif 310 312 311 313 /** Pointer to the VM internal data kept in the UVM. */ … … 383 385 } Method12; 384 386 385 # if 0387 # if 0 386 388 /** 387 389 * Method 3 & 4 - Same as method 1 & 2 respectivly, except that we … … 415 417 uint64_t u64StartSpinTS; 416 418 } Method34; 417 # endif419 # endif 418 420 } Halt; 419 421 … … 429 431 /** @} */ 430 432 } VMINTUSERPERVMCPU; 431 #ifdef IN_RING3432 433 AssertCompileMemberAlignment(VMINTUSERPERVMCPU, u64HaltsStartTS, 8); 433 434 AssertCompileMemberAlignment(VMINTUSERPERVMCPU, Halt.Method12.cNSBlockedTooLongAvg, 8); 434 435 AssertCompileMemberAlignment(VMINTUSERPERVMCPU, StatHaltYield, 8); 435 #endif436 436 437 437 /** Pointer to the VM internal data kept in the UVM. */ 438 438 typedef VMINTUSERPERVMCPU *PVMINTUSERPERVMCPU; 439 440 #endif /* IN_RING3 */ 439 441 440 442 RT_C_DECLS_BEGIN
Note:
See TracChangeset
for help on using the changeset viewer.