VirtualBox

Changeset 45968 in vbox for trunk/include


Ignore:
Timestamp:
May 9, 2013 5:12:13 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
85620
Message:

Ldr,Dbg: DWARF and ELF hacking in progress.

Location:
trunk/include/iprt
Files:
2 edited

Legend:

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

    r44528 r45968  
    10921092 */
    10931093#define RT_STR_TUPLE(a_szConst)  a_szConst, (sizeof(a_szConst) - 1)
     1094
     1095
     1096/**
     1097 * Macro for using in switch statements that turns constants into strings.
     1098 *
     1099 * @param   a_Const     The constant (not string).
     1100 */
     1101#define RT_CASE_RET_STR(a_Const)     case a_Const: return #a_Const
    10941102
    10951103
  • trunk/include/iprt/err.h

    r45454 r45968  
    14801480/** Encountered an unexpected attribute form. */
    14811481#define VERR_DWARF_UNEXPECTED_FORM              (-678)
     1482/** Unfinished code. */
     1483#define VERR_DWARF_TODO                         (-679)
     1484/** Unknown location opcode. */
     1485#define VERR_DWARF_UNKNOWN_LOC_OPCODE           (-680)
     1486/** Expression stack overflow. */
     1487#define VERR_DWARF_STACK_OVERFLOW               (-681)
     1488/** Expression stack underflow. */
     1489#define VERR_DWARF_STACK_UNDERFLOW              (-682)
     1490/** Internal processing error in the DWARF code. */
     1491#define VERR_DWARF_IPE                          (-683)
    14821492/** @} */
    14831493
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