Changeset 20738 in vbox
- Timestamp:
- Jun 20, 2009 9:35:45 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48854
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/dbg.h
r20513 r20738 50 50 typedef RTDBGSEGIDX const *PCRTDBGSEGIDX; 51 51 /** NIL debug segment index. */ 52 #define NIL_RTDBGSEGIDX UINT32_C(0xffffffff)52 #define NIL_RTDBGSEGIDX UINT32_C(0xffffffff) 53 53 /** The last normal segment index. */ 54 #define RTDBGSEGIDX_LAST UINT32_C(0xffffffef)54 #define RTDBGSEGIDX_LAST UINT32_C(0xffffffef) 55 55 /** Special segment index that indicates that the offset is a relative 56 56 * virtual address (RVA). I.e. an offset from the start of the module. */ 57 #define RTDBGSEGIDX_RVA UINT32_C(0xfffffff0)57 #define RTDBGSEGIDX_RVA UINT32_C(0xfffffff0) 58 58 /** Special segment index that indicates that the offset is a absolute. */ 59 #define RTDBGSEGIDX_ABS UINT32_C(0xfffffff1) 59 #define RTDBGSEGIDX_ABS UINT32_C(0xfffffff1) 60 /** The last valid special segment index. */ 61 #define RTDBGSEGIDX_SPECIAL_LAST RTDBGSEGIDX_ABS 62 /** The last valid special segment index. */ 63 #define RTDBGSEGIDX_SPECIAL_FIRST (RTDBGSEGIDX_LAST + 1U) 60 64 61 65 /** Max length (including '\\0') of a symbol name. */ -
trunk/include/iprt/err.h
r20374 r20738 941 941 /** The specified segment:offset address was invalid. Typically an attempt at 942 942 * addressing outside the segment boundrary. */ 943 #define VERR_DBGMOD_INVALID_ADDRESS (-650) 943 #define VERR_DBG_INVALID_ADDRESS (-650) 944 /** Invalid segment index. */ 945 #define VERR_DBG_INVALID_SEGMENT_INDEX (-651) 946 /** Invalid segment offset. */ 947 #define VERR_DBG_INVALID_SEGMENT_OFFSET (-652) 944 948 /** @} */ 945 949
Note:
See TracChangeset
for help on using the changeset viewer.