Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Terminating the Symbol Handler

The following code cleans up all memory associated with symbol handling for the specified process, using SymCleanup.

if (SymCleanup(hProcess))
{
 // SymCleanup returned success
}
else
{
 // SymCleanup failed
 DWORD error = GetLastError();
 printf("SymCleanup returned error : %d\n", error);
}

Feedback

Was this page helpful?

Additional resources