MCPcopy Create free account
hub / github.com/ddopson/node-segfault-handler / StackWalker

Method StackWalker

src/StackWalker.cpp:738–746  ·  view source on GitHub ↗

#############################################################

Source from the content-addressed store, hash-verified

736
737// #############################################################
738StackWalker::StackWalker(DWORD dwProcessId, HANDLE hProcess)
739{
740 this->m_options = OptionsAll;
741 this->m_modulesLoaded = FALSE;
742 this->m_hProcess = hProcess;
743 this->m_sw = new StackWalkerInternal(this, this->m_hProcess);
744 this->m_dwProcessId = dwProcessId;
745 this->m_szSymPath = NULL;
746}
747StackWalker::StackWalker(int fDescriptor, int options, LPCSTR szSymPath, DWORD dwProcessId, HANDLE hProcess)
748{
749 this->m_fDescriptor = fDescriptor;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected