Changeset 53630 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jan 1, 2015 11:41:26 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97399
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/CPUMInternal.h
r52419 r53630 27 27 # pragma D depends_on library x86.d 28 28 # pragma D depends_on library cpumctx.d 29 30 /* Some fudging. */ 31 typedef uint32_t CPUMMICROARCH; 32 typedef uint32_t CPUMUKNOWNCPUID; 33 typedef struct CPUMCPUIDLEAF *PCPUMCPUIDLEAF; 34 typedef struct CPUMMSRRANGE *PCPUMMSRRANGE; 35 typedef uint64_t STAMCOUNTER; 29 36 #endif 30 37 … … 128 135 uint8_t uStepping; 129 136 /** The microarchitecture. */ 137 #ifndef VBOX_FOR_DTRACE_LIB 130 138 CPUMMICROARCH enmMicroarch; 139 #else 140 uint32_t enmMicroarch; 141 #endif 131 142 /** The maximum physical address with of the CPU. */ 132 143 uint8_t cMaxPhysAddrWidth; … … 181 192 uint64_t auPadding[2]; 182 193 } CPUMFEATURES; 194 #ifndef VBOX_FOR_DTRACE_LIB 183 195 AssertCompileSize(CPUMFEATURES, 32); 196 #endif 184 197 /** Pointer to a CPU feature structure. */ 185 198 typedef CPUMFEATURES *PCPUMFEATURES;
Note:
See TracChangeset
for help on using the changeset viewer.