- Timestamp:
- Jun 25, 2009 11:22:57 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r18995 r20924 224 224 } *PDMISYSTEMINF; 225 225 AssertCompileSize(DMISYSTEMINF, 0x1b); 226 227 /** DMI processor information */ 228 typedef struct DMIPROCESSORINF 229 { 230 DMIHDR header; 231 uint8_t u8SocketDesignation; 232 uint8_t u8ProcessorType; 233 uint8_t u8ProcessorFamily; 234 uint8_t u8ProcessorManufacturer; 235 uint64_t u64ProcessorIdentification; 236 uint8_t u8ProcessorVersion; 237 uint8_t u8Voltage; 238 uint16_t u16ExternalClock; 239 uint16_t u16MaxSpeed; 240 uint16_t u16CurrentSpeed; 241 uint8_t u8Status; 242 uint8_t u8ProcessorUpgrade; 243 uint16_t u16L1CacheHandle; 244 uint16_t u16L2CacheHandle; 245 uint16_t u16L3CacheHandle; 246 uint8_t u8SerialNumber; 247 uint8_t u8AssetTag; 248 uint8_t u8PartNumber; 249 uint8_t u8CoreCount; 250 uint8_t u8CoreEnabled; 251 uint8_t u8ThreadCount; 252 uint16_t u16ProcessorCharacteristics; 253 uint16_t u16ProcessorFamily2; 254 } PDMIPROCESSORINF; 255 AssertCompileSize(DMIPROCESSORINF, 0x2a); 226 256 227 257 /** MPS floating pointer structure */
Note:
See TracChangeset
for help on using the changeset viewer.