Changeset 41493 in vbox for trunk/include/iprt
- Timestamp:
- May 30, 2012 1:47:41 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78250
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/dbg.h
r40855 r41493 60 60 /** The last valid special segment index. */ 61 61 #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 /** @} */ 62 74 63 75 … … 505 517 * @retval VERR_INVALID_HANDLE if hDbgAs is invalid. 506 518 * @retval VERR_NOT_FOUND if the address couldn't be mapped to a module. 519 * @retval VERR_INVALID_PARAMETER if incorrect flags. 507 520 * 508 521 * @param hDbgAs The address space handle. 509 522 * @param Addr The address which closest symbol is requested. 523 * @param fFlags Symbol search flags, see RTDBGSYMADDR_FLAGS_XXX. 510 524 * @param poffDisp Where to return the distance between the symbol 511 525 * and address. Optional. … … 513 527 * @param phMod Where to return the module handle. Optional. 514 528 */ 515 RTDECL(int) RTDbgAsSymbolByAddr(RTDBGAS hDbgAs, RTUINTPTR Addr, PRTINTPTR poffDisp, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod); 529 RTDECL(int) RTDbgAsSymbolByAddr(RTDBGAS hDbgAs, RTUINTPTR Addr, uint32_t fFlags, 530 PRTINTPTR poffDisp, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod); 516 531 517 532 /** … … 521 536 * @retval VERR_INVALID_HANDLE if hDbgAs is invalid. 522 537 * @retval VERR_NOT_FOUND if the address couldn't be mapped to a module. 538 * @retval VERR_INVALID_PARAMETER if incorrect flags. 523 539 * 524 540 * @param hDbgAs The address space handle. 525 541 * @param Addr The address which closest symbol is requested. 542 * @param fFlags Symbol search flags, see RTDBGSYMADDR_FLAGS_XXX. 526 543 * @param poffDisp Where to return the distance between the symbol 527 544 * and address. Optional. … … 530 547 * @param phMod Where to return the module handle. Optional. 531 548 */ 532 RTDECL(int) RTDbgAsSymbolByAddrA(RTDBGAS hDbgAs, RTUINTPTR Addr, PRTINTPTR poffDisp, PRTDBGSYMBOL *ppSymInfo, PRTDBGMOD phMod); 549 RTDECL(int) RTDbgAsSymbolByAddrA(RTDBGAS hDbgAs, RTUINTPTR Addr, uint32_t fFlags, 550 PRTINTPTR poffDisp, PRTDBGSYMBOL *ppSymInfo, PRTDBGMOD phMod); 533 551 534 552 /** … … 936 954 * @retval VERR_DBG_INVALID_SEGMENT_OFFSET if the segment offset is beyond the 937 955 * end of the segment. 956 * @retval VERR_INVALID_PARAMETER if incorrect flags. 938 957 * 939 958 * @param hDbgMod The module handle. 940 959 * @param iSeg The segment number. 941 960 * @param off The offset into the segment. 961 * @param fFlags Symbol search flags, see RTDBGSYMADDR_FLAGS_XXX. 942 962 * @param poffDisp Where to store the distance between the 943 963 * specified address and the returned symbol. … … 945 965 * @param pSymInfo Where to store the symbol information. 946 966 */ 947 RTDECL(int) RTDbgModSymbolByAddr(RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg, RTUINTPTR off, PRTINTPTR poffDisp, PRTDBGSYMBOL pSymInfo); 967 RTDECL(int) RTDbgModSymbolByAddr(RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg, RTUINTPTR off, uint32_t fFlags, 968 PRTINTPTR poffDisp, PRTDBGSYMBOL pSymInfo); 948 969 949 970 /** … … 964 985 * end of the segment. 965 986 * @retval VERR_NO_MEMORY if RTDbgSymbolAlloc fails. 987 * @retval VERR_INVALID_PARAMETER if incorrect flags. 966 988 * 967 989 * @param hDbgMod The module handle. 968 990 * @param iSeg The segment index. 969 991 * @param off The offset into the segment. 992 * @param fFlags Symbol search flags, see RTDBGSYMADDR_FLAGS_XXX. 970 993 * @param poffDisp Where to store the distance between the 971 994 * specified address and the returned symbol. Optional. … … 974 997 * RTDbgSymbolFree. 975 998 */ 976 RTDECL(int) RTDbgModSymbolByAddrA(RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg, RTUINTPTR off, PRTINTPTR poffDisp, PRTDBGSYMBOL *ppSymInfo); 999 RTDECL(int) RTDbgModSymbolByAddrA(RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg, RTUINTPTR off, uint32_t fFlags, 1000 PRTINTPTR poffDisp, PRTDBGSYMBOL *ppSymInfo); 977 1001 978 1002 /**
Note:
See TracChangeset
for help on using the changeset viewer.