DkmThread.GetVolatileFlags Method

Definition

Overloads

GetVolatileFlags()

Get volatile flags about a thread. For instance, return if a thread is a user-mode scheduled thread.

GetVolatileFlags(DkmWorkList, DkmCompletionRoutine<DkmGetVolatileFlagsAsyncResult>)

Get volatile flags about a thread. For instance, return if a thread is a user-mode scheduled 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.

GetVolatileFlags()

Get volatile flags about a thread. For instance, return if a thread is a user-mode scheduled thread.

public:
 Microsoft::VisualStudio::Debugger::ThreadProperties::DkmVolatileThreadFlags GetVolatileFlags();
public:
 Microsoft::VisualStudio::Debugger::ThreadProperties::DkmVolatileThreadFlags GetVolatileFlags();
Microsoft::VisualStudio::Debugger::ThreadProperties::DkmVolatileThreadFlags GetVolatileFlags();
public Microsoft.VisualStudio.Debugger.ThreadProperties.DkmVolatileThreadFlags GetVolatileFlags ();
member this.GetVolatileFlags : unit -> Microsoft.VisualStudio.Debugger.ThreadProperties.DkmVolatileThreadFlags
Public Function GetVolatileFlags () As DkmVolatileThreadFlags

Returns

[Out] Volatile flags that apply to a thread. These values are expected to change over time and should not be cached by callers.

Applies to

GetVolatileFlags(DkmWorkList, DkmCompletionRoutine<DkmGetVolatileFlagsAsyncResult>)

Get volatile flags about a thread. For instance, return if a thread is a user-mode scheduled 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 GetVolatileFlags(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::ThreadProperties::DkmGetVolatileFlagsAsyncResult> ^ CompletionRoutine);
public void GetVolatileFlags (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.ThreadProperties.DkmGetVolatileFlagsAsyncResult> CompletionRoutine);
member this.GetVolatileFlags : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.ThreadProperties.DkmGetVolatileFlagsAsyncResult> -> unit
Public Sub GetVolatileFlags (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetVolatileFlagsAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetVolatileFlagsAsyncResult>

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