MCPcopy Create free account
hub / github.com/aliasIsolation/aliasIsolation / SymHandler

Class SymHandler

src/crashHandler/crashHandler.cpp:126–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124}
125
126class SymHandler {
127 HANDLE p;
128public:
129 SymHandler(HANDLE process, char const *path=NULL, bool intrude = false) : p(process) {
130 SymInitialize(p, path, intrude);
131 }
132 ~SymHandler() { SymCleanup(p); }
133};
134
135#ifdef _M_X64
136STACKFRAME64 init_stack_frame(CONTEXT c) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected