Changeset 72127 in vbox for trunk/include
- Timestamp:
- May 4, 2018 10:11:44 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/x86.h
r71755 r72127 1030 1030 * @{ */ 1031 1031 /** Break on instruction fetch only. */ 1032 #define X86_DR7_RW_EO 0U1032 #define X86_DR7_RW_EO UINT32_C(0) 1033 1033 /** Break on write only. */ 1034 #define X86_DR7_RW_WO 1U1034 #define X86_DR7_RW_WO UINT32_C(1) 1035 1035 /** Break on I/O read/write. This is only defined if CR4.DE is set. */ 1036 #define X86_DR7_RW_IO 2U1036 #define X86_DR7_RW_IO UINT32_C(2) 1037 1037 /** Break on read or write (but not instruction fetches). */ 1038 #define X86_DR7_RW_RW 3U1038 #define X86_DR7_RW_RW UINT32_C(3) 1039 1039 /** @} */ 1040 1040 … … 1076 1076 /** @name Length values. 1077 1077 * @{ */ 1078 #define X86_DR7_LEN_BYTE 0U1079 #define X86_DR7_LEN_WORD 1U1080 #define X86_DR7_LEN_QWORD 2U/**< AMD64 long mode only. */1081 #define X86_DR7_LEN_DWORD 3U1078 #define X86_DR7_LEN_BYTE UINT32_C(0) 1079 #define X86_DR7_LEN_WORD UINT32_C(1) 1080 #define X86_DR7_LEN_QWORD UINT32_C(2) /**< AMD64 long mode only. */ 1081 #define X86_DR7_LEN_DWORD UINT32_C(3) 1082 1082 /** @} */ 1083 1083
Note:
See TracChangeset
for help on using the changeset viewer.