Changeset 37080 in vbox
- Timestamp:
- May 13, 2011 3:39:58 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/x86.h
r36860 r37080 2800 2800 * The mask used to mask off the table indicator and CPL of an selector. 2801 2801 */ 2802 #define X86_SEL_MASK 0xfff8 2802 #define X86_SEL_MASK 0xfff8U 2803 2803 2804 2804 /** 2805 2805 * The bit indicating that a selector is in the LDT and not in the GDT. 2806 2806 */ 2807 #define X86_SEL_LDT 0x0004 2807 #define X86_SEL_LDT 0x0004U 2808 2808 /** 2809 2809 * The bit mask for getting the RPL of a selector. 2810 2810 */ 2811 #define X86_SEL_RPL 0x0003 2811 #define X86_SEL_RPL 0x0003U 2812 2812 2813 2813 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.