DkmRuntimeBreakpoint.RequestBreakpointEventOnModifiedThread Method

Definition

Overloads

RequestBreakpointEventOnModifiedThread(DkmThread)

The breakpoint condition processor decides not to break on the given thread but another thread of the same warp, so the breakpoint condition processor instructs the base debug monitor to re-send the breakpoint event on the other thread.

RequestBreakpointEventOnModifiedThread(DkmWorkList, DkmThread, DkmCompletionRoutine<DkmRequestBreakpointEventOnModifiedThreadAsyncResult>)

The breakpoint condition processor decides not to break on the given thread but another thread of the same warp, so the breakpoint condition processor instructs the base debug monitor to re-send the breakpoint event on the other thread.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

RequestBreakpointEventOnModifiedThread(DkmThread)

The breakpoint condition processor decides not to break on the given thread but another thread of the same warp, so the breakpoint condition processor instructs the base debug monitor to re-send the breakpoint event on the other thread.

public:
 void RequestBreakpointEventOnModifiedThread(Microsoft::VisualStudio::Debugger::DkmThread ^ ModifiedBreakThread);
public void RequestBreakpointEventOnModifiedThread (Microsoft.VisualStudio.Debugger.DkmThread ModifiedBreakThread);
member this.RequestBreakpointEventOnModifiedThread : Microsoft.VisualStudio.Debugger.DkmThread -> unit
Public Sub RequestBreakpointEventOnModifiedThread (ModifiedBreakThread As DkmThread)

Parameters

ModifiedBreakThread
DkmThread

[In] The base debug monitor should re-send breakpoint event on this thread.

Applies to

RequestBreakpointEventOnModifiedThread(DkmWorkList, DkmThread, DkmCompletionRoutine<DkmRequestBreakpointEventOnModifiedThreadAsyncResult>)

The breakpoint condition processor decides not to break on the given thread but another thread of the same warp, so the breakpoint condition processor instructs the base debug monitor to re-send the breakpoint event on the other thread.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

public:
 void RequestBreakpointEventOnModifiedThread(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmThread ^ ModifiedBreakThread, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Breakpoints::DkmRequestBreakpointEventOnModifiedThreadAsyncResult> ^ CompletionRoutine);
public void RequestBreakpointEventOnModifiedThread (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmThread ModifiedBreakThread, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Breakpoints.DkmRequestBreakpointEventOnModifiedThreadAsyncResult> CompletionRoutine);
member this.RequestBreakpointEventOnModifiedThread : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmThread * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Breakpoints.DkmRequestBreakpointEventOnModifiedThreadAsyncResult> -> unit
Public Sub RequestBreakpointEventOnModifiedThread (WorkList As DkmWorkList, ModifiedBreakThread As DkmThread, CompletionRoutine As DkmCompletionRoutine(Of DkmRequestBreakpointEventOnModifiedThreadAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

ModifiedBreakThread
DkmThread

[In] The base debug monitor should re-send breakpoint event on this thread.

CompletionRoutine
DkmCompletionRoutine<DkmRequestBreakpointEventOnModifiedThreadAsyncResult>

Routine to fire when the request is complete. If the request is successfully appended to the work list, this will always fire (including when the operation is canceled). This will never fire if appending the work item fails.

Applies to