Changeset 54999 in vbox for trunk/include/VBox/vmm/cpumctx.h
- Timestamp:
- Mar 29, 2015 3:04:02 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/cpumctx.h
r54898 r54999 247 247 typedef struct CPUMCTX 248 248 { 249 /** FPU state. (16-byte alignment)250 * @todo This doesn't have to be in X86FXSTATE on CPUs without fxsr - we need a type for the251 * actual format or convert it (waste of time). */252 X86XSAVEAREA XState;253 254 249 /** CPUMCTXCORE Part. 255 250 * @{ */ … … 406 401 /** Size padding. */ 407 402 uint32_t au32SizePadding[6]; 403 404 /** FPU state. (16-byte alignment) 405 * @todo This doesn't have to be in X86FXSTATE on CPUs without fxsr - we need a type for the 406 * actual format or convert it (waste of time). */ 407 X86XSAVEAREA XState; 408 408 } CPUMCTX; 409 409 #pragma pack()
Note:
See TracChangeset
for help on using the changeset viewer.