Changeset 9656 in vbox for trunk/include
- Timestamp:
- Jun 12, 2008 11:56:51 AM (17 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/types.h
r9431 r9656 423 423 /** 52 - Available for system software. */ 424 424 unsigned u1Available : 1; 425 /** 53 - Reserved - 0. In long mode this is the 'Long' (L) attribute bit. */426 unsigned u1 Reserved: 1;425 /** 53 - 32 bits mode: Reserved - 0, long mode: Long Attribute Bit. */ 426 unsigned u1Long : 1; 427 427 /** 54 - This flags meaning depends on the segment type. Try make sense out 428 428 * of the intel manual yourself. */ -
trunk/include/VBox/x86.h
r9614 r9656 1808 1808 /** Available for system software. */ 1809 1809 unsigned u1Available : 1; 1810 /** Reserved - 0. */1811 unsigned u1 Reserved: 1;1810 /** 32 bits mode: Reserved - 0, long mode: Long Attribute Bit. */ 1811 unsigned u1Long : 1; 1812 1812 /** This flags meaning depends on the segment type. Try make sense out 1813 1813 * of the intel manual yourself. */ … … 1843 1843 /** Available for system software. */ 1844 1844 unsigned u1Available : 1; 1845 /** Reserved - 0. */1846 unsigned u1 Reserved: 1;1845 /** 32 bits mode: Reserved - 0, long mode: Long Attribute Bit. */ 1846 unsigned u1Long : 1; 1847 1847 /** This flags meaning depends on the segment type. Try make sense out 1848 1848 * of the intel manual yourself. */
Note:
See TracChangeset
for help on using the changeset viewer.