ICorProfilerCallback::ExceptionUnwindFunctionLeave Method

Notifies the profiler that the unwind phase of exception handling has finished unwinding a function.

HRESULT ExceptionUnwindFunctionLeave();

Remarks

When the ExceptionUnwindFunctionLeave method is called, the function instance and its stack data are removed from the stack.

The profiler should not block during this call because the stack may not be in a state that allows garbage collection, and therefore preemptive garbage collection cannot be enabled. If the profiler blocks here and a garbage collection is attempted, the runtime will block until this callback returns.

Also, during this call, the profiler must not call into managed code or in any way cause a managed-memory allocation.

Requirements

Platforms: Windows 2000, Windows XP, Windows Server 2003 family

Header: CorProf.idl

Library: CorGuids.lib

.NET Framework Version: 2.0

See Also

Concepts

ICorProfilerCallback Interface

ICorProfilerCallback::ExceptionUnwindFunctionEnter Method