IDkmThreadExitNotification.OnThreadExit Method

Definition

OnThreadExit is invoked as part of event processing. See interface definition for more information.

public:
 void OnThreadExit(Microsoft::VisualStudio::Debugger::DkmThread ^ thread, int exitCode, Microsoft::VisualStudio::Debugger::DkmEventDescriptor ^ eventDescriptor);
public void OnThreadExit (Microsoft.VisualStudio.Debugger.DkmThread thread, int exitCode, Microsoft.VisualStudio.Debugger.DkmEventDescriptor eventDescriptor);
abstract member OnThreadExit : Microsoft.VisualStudio.Debugger.DkmThread * int * Microsoft.VisualStudio.Debugger.DkmEventDescriptor -> unit
Public Sub OnThreadExit (thread As DkmThread, exitCode As Integer, eventDescriptor As DkmEventDescriptor)

Parameters

thread
DkmThread

[In] DkmThread represents a thread running in the target process.

exitCode
Int32

[In] 32-bit value that the process returned on exit. This is the same value that would be reported from the kernel32!GetExitCodeThread.

eventDescriptor
DkmEventDescriptor

[In] Describes the event being processed.

Applies to