Changeset 73761 in vbox for trunk/include/iprt
- Timestamp:
- Aug 19, 2018 1:42:25 PM (6 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 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)
Note:
See TracChangeset
for help on using the changeset viewer.