VirtualBox

Changeset 41493 in vbox for trunk/include/iprt


Ignore:
Timestamp:
May 30, 2012 1:47:41 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
78250
Message:

RTDbg*SymbolByAddr*: Added a flag parameter.

File:
1 edited

Legend:

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

    r40855 r41493  
    6060/** The last valid special segment index. */
    6161#define RTDBGSEGIDX_SPECIAL_FIRST   (RTDBGSEGIDX_LAST + 1U)
     62
     63
     64/** @name RTDBGSYMADDR_FLAGS_XXX
     65 * Flags used when looking up a symbol by address.
     66 * @{ */
     67/** Less or equal address. (default) */
     68#define RTDBGSYMADDR_FLAGS_LESS_OR_EQUAL    UINT32_C(0)
     69/** Greater or equal address.  */
     70#define RTDBGSYMADDR_FLAGS_GREATER_OR_EQUAL UINT32_C(1)
     71/** Mask of valid flags. */
     72#define RTDBGSYMADDR_FLAGS_VALID_MASK       UINT32_C(1)
     73/** @} */
    6274
    6375
     
    505517 * @retval  VERR_INVALID_HANDLE if hDbgAs is invalid.
    506518 * @retval  VERR_NOT_FOUND if the address couldn't be mapped to a module.
     519 * @retval  VERR_INVALID_PARAMETER if incorrect flags.
    507520 *
    508521 * @param   hDbgAs          The address space handle.
    509522 * @param   Addr            The address which closest symbol is requested.
     523 * @param   fFlags              Symbol search flags, see RTDBGSYMADDR_FLAGS_XXX.
    510524 * @param   poffDisp        Where to return the distance between the symbol
    511525 *                          and address. Optional.
     
    513527 * @param   phMod           Where to return the module handle. Optional.
    514528 */
    515 RTDECL(int) RTDbgAsSymbolByAddr(RTDBGAS hDbgAs, RTUINTPTR Addr, PRTINTPTR poffDisp, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod);
     529RTDECL(int) RTDbgAsSymbolByAddr(RTDBGAS hDbgAs, RTUINTPTR Addr, uint32_t fFlags,
     530                                PRTINTPTR poffDisp, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod);
    516531
    517532/**
     
    521536 * @retval  VERR_INVALID_HANDLE if hDbgAs is invalid.
    522537 * @retval  VERR_NOT_FOUND if the address couldn't be mapped to a module.
     538 * @retval  VERR_INVALID_PARAMETER if incorrect flags.
    523539 *
    524540 * @param   hDbgAs          The address space handle.
    525541 * @param   Addr            The address which closest symbol is requested.
     542 * @param   fFlags              Symbol search flags, see RTDBGSYMADDR_FLAGS_XXX.
    526543 * @param   poffDisp        Where to return the distance between the symbol
    527544 *                          and address. Optional.
     
    530547 * @param   phMod           Where to return the module handle. Optional.
    531548 */
    532 RTDECL(int) RTDbgAsSymbolByAddrA(RTDBGAS hDbgAs, RTUINTPTR Addr, PRTINTPTR poffDisp, PRTDBGSYMBOL *ppSymInfo, PRTDBGMOD phMod);
     549RTDECL(int) RTDbgAsSymbolByAddrA(RTDBGAS hDbgAs, RTUINTPTR Addr, uint32_t fFlags,
     550                                 PRTINTPTR poffDisp, PRTDBGSYMBOL *ppSymInfo, PRTDBGMOD phMod);
    533551
    534552/**
     
    936954 * @retval  VERR_DBG_INVALID_SEGMENT_OFFSET if the segment offset is beyond the
    937955 *          end of the segment.
     956 * @retval  VERR_INVALID_PARAMETER if incorrect flags.
    938957 *
    939958 * @param   hDbgMod             The module handle.
    940959 * @param   iSeg                The segment number.
    941960 * @param   off                 The offset into the segment.
     961 * @param   fFlags              Symbol search flags, see RTDBGSYMADDR_FLAGS_XXX.
    942962 * @param   poffDisp            Where to store the distance between the
    943963 *                              specified address and the returned symbol.
     
    945965 * @param   pSymInfo            Where to store the symbol information.
    946966 */
    947 RTDECL(int)         RTDbgModSymbolByAddr(RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg, RTUINTPTR off, PRTINTPTR poffDisp, PRTDBGSYMBOL pSymInfo);
     967RTDECL(int)         RTDbgModSymbolByAddr(RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg, RTUINTPTR off, uint32_t fFlags,
     968                                         PRTINTPTR poffDisp, PRTDBGSYMBOL pSymInfo);
    948969
    949970/**
     
    964985 *          end of the segment.
    965986 * @retval  VERR_NO_MEMORY if RTDbgSymbolAlloc fails.
     987 * @retval  VERR_INVALID_PARAMETER if incorrect flags.
    966988 *
    967989 * @param   hDbgMod             The module handle.
    968990 * @param   iSeg                The segment index.
    969991 * @param   off                 The offset into the segment.
     992 * @param   fFlags              Symbol search flags, see RTDBGSYMADDR_FLAGS_XXX.
    970993 * @param   poffDisp            Where to store the distance between the
    971994 *                              specified address and the returned symbol. Optional.
     
    974997 *                              RTDbgSymbolFree.
    975998 */
    976 RTDECL(int)         RTDbgModSymbolByAddrA(RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg, RTUINTPTR off, PRTINTPTR poffDisp, PRTDBGSYMBOL *ppSymInfo);
     999RTDECL(int)         RTDbgModSymbolByAddrA(RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg, RTUINTPTR off, uint32_t fFlags,
     1000                                          PRTINTPTR poffDisp, PRTDBGSYMBOL *ppSymInfo);
    9771001
    9781002/**
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