- Timestamp:
- Aug 19, 2018 1:42:25 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/dbg.h
r73494 r73761 269 269 */ 270 270 DECLCALLBACKMEMBER(int, pfnReadStack)(struct RTDBGUNWINDSTATE *pThis, RTUINTPTR uSp, size_t cbToRead, void *pvDst); 271 /** User argument (useful efor pfnReadStack). */271 /** User argument (useful for pfnReadStack). */ 272 272 void *pvUser; 273 273 … … 425 425 426 426 427 /** 428 * Dump the stack of the current thread into @a pszStack. 429 * 430 * This could be a little slow as it reads image and debug info again for each call. 431 * 432 * @returns Length of string returned in @a pszStack. 433 * @param pszStack The output buffer. 434 * @param cbStack The size of the output buffer. 435 * @param fFlags Future flags, MBZ. 436 * 437 * @remarks Not present on all systems and contexts. 438 */ 439 RTDECL(size_t) RTDbgStackDumpSelf(char *pszStack, size_t cbStack, uint32_t fFlags); 440 441 427 442 # ifdef IN_RING3 428 443 -
trunk/include/iprt/mangling.h
r73705 r73761 758 758 # define RTDbgModSymbolCount RT_MANGLER(RTDbgModSymbolCount) 759 759 # define RTDbgModUnwindFrame RT_MANGLER(RTDbgModUnwindFrame) 760 # define RTDbgStackDumpSelf RT_MANGLER(RTDbgStackDumpSelf) 760 761 # define RTDbgSymbolAlloc RT_MANGLER(RTDbgSymbolAlloc) 761 762 # define RTDbgSymbolDup RT_MANGLER(RTDbgSymbolDup) -
trunk/src/VBox/Runtime/Makefile.kmk
r73751 r73761 748 748 common/asm/ASMSerializeInstruction-iret.asm \ 749 749 common/asm/ASMSerializeInstruction-rdtscp.asm \ 750 common/dbg/dbgstackdumpself.cpp \ 751 common/dbg/dbgstackdumpself-amd64-x86.asm \ 750 752 common/math/bignum-amd64-x86.asm 751 753 RuntimeR3_SOURCES.amd64 += \ … … 769 771 common/asm/ASMSerializeInstruction-iret.asm \ 770 772 common/asm/ASMSerializeInstruction-rdtscp.asm \ 773 common/dbg/dbgstackdumpself.cpp \ 774 common/dbg/dbgstackdumpself-amd64-x86.asm \ 771 775 common/math/bignum-amd64-x86.asm \ 772 776 common/math/RTUInt128MulByU64.asm
Note:
See TracChangeset
for help on using the changeset viewer.