Terminating the Symbol Handler

From Debug Help Library

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
    error = GetLastError();
    printf("SymCleanup returned error : %d\n", error);
}

Send comments about this topic to Microsoft

Build date: 9/25/2007

© 2007 Microsoft Corporation. All rights reserved.