Contents Up Previous Next

wxStackFrame

wxStackFrame represents a single stack frame, or a single function in the call stack, and is used exclusively together with wxStackWalker, see there for a more detailed discussion.

Derived from

No base class

Include files

<wx/stackwalk.h>

Only available if wxUSE_STACKWALKER is 1, currently only implemented for Win32 and Unix versions using recent version of GNU libc.

See also

wxStackWalker

Members

wxStackFrame::GetAddress
wxStackFrame::GetFileName
wxStackFrame::GetLevel
wxStackFrame::GetLine
wxStackFrame::GetModule
wxStackFrame::GetName
wxStackFrame::GetOffset
wxStackFrame::GetParam
wxStackFrame::GetParamCount
wxStackFrame::HasSourceLocation


wxStackFrame::GetAddress

void* GetAddress() const

Return the address of this frame.


wxStackFrame::GetFileName

wxString GetFileName() const

Return the name of the file containing this frame, empty if unavailable (typically because debug info is missing).

Use HasSourceLocation to check whether the file name is available.


wxStackFrame::GetLevel

size_t GetLevel() const

Get the level of this frame (deepest/innermost one is 0).


wxStackFrame::GetLine

size_t GetLine() const

Return the line number of this frame, 0 if unavailable.

See also

GetFileName


wxStackFrame::GetModule

wxString GetModule() const

Get the module this function belongs to (empty if not available).


wxStackFrame::GetName

wxString GetName() const

Return the unmangled (if possible) name of the function containing this frame.


wxStackFrame::GetOffset

size_t GetOffset() const

Return the return address of this frame.


wxStackFrame::GetParam

bool GetParam(size_t n, wxString * type, wxString * name, wxString * value) const

Get the name, type and value (in text form) of the given parameter. Any pointer may be NULL if you're not interested in the corresponding value.

Return true if at least some values could be retrieved.

This function currently is only implemented under Win32 and requires a PDB file.


wxStackFrame::GetParamCount

size_t GetParamCount() const

Return the number of parameters of this function (may return 0 if we can't retrieve the parameters info even although the function does have parameters).


wxStackFrame::HasSourceLocation

bool HasSourceLocation() const

Return true if we have the file name and line number for this frame.