DkmMinidumpThreadInfo 构造函数

定义

初始化新的 DkmMinidumpThreadInfo 值。

此 API 是在 Visual Studio 17 RTM (DkmApiVersion.VS17RTM) 中引入的。

public DkmMinidumpThreadInfo (uint ThreadId, uint DumpFlags, uint DumpError, uint ExitStatus, ulong CreateTime, ulong ExitTime, ulong KernelTime, ulong UserTime, ulong StartAddress, ulong Affinity);
new Microsoft.VisualStudio.Debugger.ThreadProperties.DkmMinidumpThreadInfo : uint32 * uint32 * uint32 * uint32 * uint64 * uint64 * uint64 * uint64 * uint64 * uint64 -> Microsoft.VisualStudio.Debugger.ThreadProperties.DkmMinidumpThreadInfo
Public Sub New (ThreadId As UInteger, DumpFlags As UInteger, DumpError As UInteger, ExitStatus As UInteger, CreateTime As ULong, ExitTime As ULong, KernelTime As ULong, UserTime As ULong, StartAddress As ULong, Affinity As ULong)

参数

ThreadId
UInt32

[In]线程的标识符。

DumpFlags
UInt32

[In]指示线程状态的标志。

DumpError
UInt32

[In]指示转储状态的 HRESULT 值。

ExitStatus
UInt32

[In]线程终止状态代码。

CreateTime
UInt64

[In]创建线程的时间,以 1601 年 1 月 1 日以来的 100 纳秒间隔 (UTC) 。

ExitTime
UInt64

[In]线程退出的时间,以 1601 年 1 月 1 日以来的 100 纳秒间隔 (UTC) 。

KernelTime
UInt64

[In]在内核模式下执行的时间,间隔为 100 纳秒。

UserTime
UInt64

[In]在用户模式下执行的时间,间隔为 100 纳秒。

StartAddress
UInt64

[In]线程的起始地址。

Affinity
UInt64

[In]处理器关联掩码。

适用于