IDkmProcessExitNotification.OnProcessExit Method

Definition

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

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

Parameters

process
DkmProcess

[In] DkmProcess represents a target process which is being debugged. The debugger debugs processes, so this is the basic unit of debugging. A DkmProcess can represent a system process or a virtual process such as minidumps.

exitCode
Int32

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

eventDescriptor
DkmEventDescriptor

[In] Describes the event being processed.

Applies to