VirtualBox

Changeset 20738 in vbox


Ignore:
Timestamp:
Jun 20, 2009 9:35:45 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
48854
Message:

iprt: RTDbg coding.

Location:
trunk/include/iprt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/dbg.h

    r20513 r20738  
    5050typedef RTDBGSEGIDX const  *PCRTDBGSEGIDX;
    5151/** NIL debug segment index. */
    52 #define NIL_RTDBGSEGIDX     UINT32_C(0xffffffff)
     52#define NIL_RTDBGSEGIDX             UINT32_C(0xffffffff)
    5353/** The last normal segment index. */
    54 #define RTDBGSEGIDX_LAST    UINT32_C(0xffffffef)
     54#define RTDBGSEGIDX_LAST            UINT32_C(0xffffffef)
    5555/** Special segment index that indicates that the offset is a relative
    5656 * 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)
    5858/** 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)
    6064
    6165/** Max length (including '\\0') of a symbol name. */
  • trunk/include/iprt/err.h

    r20374 r20738  
    941941/** The specified segment:offset address was invalid. Typically an attempt at
    942942 * 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)
    944948/** @} */
    945949
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette