IDkmThreadCreateNotification.OnThreadCreate Method

Definition

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

public:
 void OnThreadCreate(Microsoft::VisualStudio::Debugger::DkmThread ^ thread, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, Microsoft::VisualStudio::Debugger::DkmEventDescriptorS ^ eventDescriptor);
public void OnThreadCreate (Microsoft.VisualStudio.Debugger.DkmThread thread, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.DkmEventDescriptorS eventDescriptor);
abstract member OnThreadCreate : Microsoft.VisualStudio.Debugger.DkmThread * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmEventDescriptorS -> unit
Public Sub OnThreadCreate (thread As DkmThread, workList As DkmWorkList, eventDescriptor As DkmEventDescriptorS)

Parameters

thread
DkmThread

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

workList
DkmWorkList

WorkList to append additional event processing work to. This work list will begin execution after all listeners have been notifiied. The event will not finish until after the work list fully executes.

eventDescriptor
DkmEventDescriptorS

[In] Describes the event being processed and provides the ability for a component to suppress this event.

Applies to