libcsdbg  1.28
C++ exception (and generic) stack trace debug library
thread & csdbg::thread::foreach ( void(*)(u32, call *)  pfunc) const
inlinevirtual

Traverse the simulated stack with a callback for each call.

Parameters
[in]pfuncthe callback
Returns
*this

Definition at line 301 of file thread.cpp.

References m_stack.

302 {
303  m_stack->foreach(pfunc);
304  return const_cast<thread&> (*this);
305 }
stack< call > * m_stack
Simulated call stack.
Definition: thread.hpp:37
thread(const i8 *=NULL)
Object constructor.
Definition: thread.cpp:18