Freigeben über


IDkmVolatileThreadProperties.GetVolatileProperties Method

Definition

Get a thread's dynamic properties.

public:
 void GetVolatileProperties(Microsoft::VisualStudio::Debugger::DkmThread ^ thread, [Runtime::InteropServices::Out] int % priority, [Runtime::InteropServices::Out] System::UInt64 % affinityMask);
public void GetVolatileProperties (Microsoft.VisualStudio.Debugger.DkmThread thread, out int priority, out ulong affinityMask);
abstract member GetVolatileProperties : Microsoft.VisualStudio.Debugger.DkmThread * int * uint64 -> unit
Public Sub GetVolatileProperties (thread As DkmThread, ByRef priority As Integer, ByRef affinityMask As ULong)

Parameters

thread
DkmThread

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

priority
Int32

[Out] The priority of the thread. The values returned correspond directly to the values defined for kernel32!GetThreadPriority.

affinityMask
UInt64

[Out] The affinity mask of the thread. The values returned correspond directly to the values defined for kernel32!SetThreadAffinityMask.

Applies to