Changeset 9430 in vbox for trunk/include
- Timestamp:
- Jun 5, 2008 3:28:07 PM (17 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/cpum.h
r9421 r9430 298 298 VBOXGDTR gdtr; 299 299 uint16_t gdtrPadding; 300 uint32_t gdtrPadding64;/** @todo fix this hack */301 300 /** Interrupt Descriptor Table register. */ 302 301 VBOXIDTR idtr; 303 302 uint16_t idtrPadding; 304 uint32_t idtrPadding64;/** @todo fix this hack */305 303 /** The task register. 306 304 * Only the guest context uses all the members. */ -
trunk/include/VBox/cpum.mac
r9421 r9430 174 174 .dr7 resq 1 175 175 176 .gdtr resb 6; GDT limit + linear address176 .gdtr resb 10 ; GDT limit + linear address 177 177 .gdtrPadding resw 1 178 .gdtrPadding64 resd 1 179 .idtr resb 6 ; IDT limit + linear address 178 .idtr resb 10 ; IDT limit + linear address 180 179 .idtrPadding resw 1 181 .idtrPadding64 resd 1182 180 .ldtr resw 1 183 181 .ldtrPadding resw 1 -
trunk/include/VBox/types.h
r9412 r9430 381 381 uint16_t cbIdt; 382 382 /** Address of the IDT. */ 383 uint32_tpIdt;383 RTGCPTR pIdt; 384 384 } VBOXIDTR, *PVBOXIDTR; 385 385 #pragma pack() … … 470 470 uint16_t cbGdt; 471 471 /** Address of the GDT. */ 472 uint32_tpGdt;472 RTGCPTR pGdt; 473 473 } VBOXGDTR; 474 474 #pragma pack()
Note:
See TracChangeset
for help on using the changeset viewer.