X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b67a86d57493137cb1f7cce8ca8daf0b7120207e..9bf6a1b80cb856903e15387ebecc926142e73010:/docs/latex/wx/stackwalker.tex diff --git a/docs/latex/wx/stackwalker.tex b/docs/latex/wx/stackwalker.tex index e99b65774b..90f7eb5c12 100644 --- a/docs/latex/wx/stackwalker.tex +++ b/docs/latex/wx/stackwalker.tex @@ -46,6 +46,10 @@ No base class +\wxheading{Library} + +\helpref{wxBase}{librarieslist} + Only available if \texttt{wxUSE\_STACKWALKER} is $1$, currently only implemented for Win32 and Unix versions using recent version of GNU libc. @@ -82,19 +86,23 @@ This function must be overrided to process the given frame. \membersection{wxStackWalker::Walk}\label{wxstackwalkerwalk} -\func{void}{Walk}{\param{size\_t }{skip = 1}} +\func{void}{Walk}{\param{size\_t }{skip = 1}, \param{size\_t }{maxDepth = 200}} Enumerate stack frames from the current location, skipping the initial number of them (this can be useful when Walk() is called from some known location and you don't want to see the first few frames anyhow; also notice that Walk() frame itself is not included if skip $\ge 1$). +Up to \arg{maxDepth} frames are walked from the innermost to the outermost one. + \membersection{wxStackWalker::WalkFromException}\label{wxstackwalkerwalkfromexception} -\func{void}{WalkFromException}{\void} +\func{void}{WalkFromException}{\param{size\_t }{maxDepth = 200}} Enumerate stack frames from the location of uncaught exception. This method can only be called from \helpref{wxApp::OnFatalException()}{wxapponfatalexception}. +Up to \arg{maxDepth} frames are walked from the innermost to the outermost one. +