Changeset 46134 in vbox for trunk/include/iprt
- Timestamp:
- May 16, 2013 11:32:06 PM (12 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/dbg.h
r46109 r46134 534 534 535 535 /** 536 * Locks the address space for exclusive access. 537 * 538 * @returns IRPT status code 539 * @param hDbgAs The address space handle. 540 */ 541 RTDECL(int) RTDbgAsLockExcl(RTDBGAS hDbgAs); 542 543 /** 544 * Counters the actions of one RTDbgAsUnlockExcl call. 545 * 546 * @returns IRPT status code 547 * @param hDbgAs The address space handle. 548 */ 549 RTDECL(int) RTDbgAsUnlockExcl(RTDBGAS hDbgAs); 550 551 /** 536 552 * Gets the name of an address space. 537 553 * … … 843 859 * @param pLine Where to return the line number information. 844 860 */ 845 RTDECL(int) RTDbgAs (RTDBGAS hDbgAs, RTUINTPTR Addr, PRTINTPTR poffDisp, PRTDBGLINE pLine);861 RTDECL(int) RTDbgAsLineByAddr(RTDBGAS hDbgAs, RTUINTPTR Addr, PRTINTPTR poffDisp, PRTDBGLINE pLine); 846 862 847 863 /** … … 963 979 964 980 /** 981 * Removes all content from the debug module (container), optionally only 982 * leaving segments and image size intact. 983 * 984 * This is only possible on container modules, i.e. created by RTDbgModCreate(). 985 * 986 * @returns IPRT status code. 987 * @param hDbgMod The module handle. 988 * @param fLeaveSegments Whether to leave segments (and image size) as is. 989 */ 990 RTDECL(int) RTDbgModRemoveAll(RTDBGMOD hDbgMod, bool fLeaveSegments); 991 992 /** 965 993 * Gets the module name. 966 994 * -
trunk/include/iprt/mangling.h
r46109 r46134 352 352 # define RTDbgAsLineByAddr RT_MANGLER(RTDbgAsLineByAddr) 353 353 # define RTDbgAsLineByAddrA RT_MANGLER(RTDbgAsLineByAddrA) 354 # define RTDbgAsLockExcl RT_MANGLER(RTDbgAsLockExcl) 354 355 # define RTDbgAsModuleByAddr RT_MANGLER(RTDbgAsModuleByAddr) 355 356 # define RTDbgAsModuleByIndex RT_MANGLER(RTDbgAsModuleByIndex) … … 369 370 # define RTDbgAsSymbolByName RT_MANGLER(RTDbgAsSymbolByName) 370 371 # define RTDbgAsSymbolByNameA RT_MANGLER(RTDbgAsSymbolByNameA) 372 # define RTDbgAsUnlockExcl RT_MANGLER(RTDbgAsUnlockExcl) 371 373 # define RTDbgCfgCreate RT_MANGLER(RTDbgCfgCreate) 372 374 # define RTDbgCfgRetain RT_MANGLER(RTDbgCfgRetain) … … 407 409 # define RTDbgModImageFileUsed RT_MANGLER(RTDbgModImageFileUsed) 408 410 # define RTDbgModRelease RT_MANGLER(RTDbgModRelease) 411 # define RTDbgModRemoveAll RT_MANGLER(RTDbgModRemoveAll) 409 412 # define RTDbgModRetain RT_MANGLER(RTDbgModRetain) 410 413 # define RTDbgModRvaToSegOff RT_MANGLER(RTDbgModRvaToSegOff)
Note:
See TracChangeset
for help on using the changeset viewer.