MINIDUMP_THREAD_EX Structure
Contains extended information for a specific thread.
typedef struct _MINIDUMP_THREAD_EX {
ULONG32 ThreadId;
ULONG32 SuspendCount;
ULONG32 PriorityClass;
ULONG32 Priority;
ULONG64 Teb;
MINIDUMP_MEMORY_DESCRIPTOR Stack;
MINIDUMP_LOCATION_DESCRIPTOR ThreadContext;
MINIDUMP_MEMORY_DESCRIPTOR BackingStore; } MINIDUMP_THREAD_EX,
*PMINIDUMP_THREAD_EX;
Members
- ThreadId
The identifier of the thread.
- SuspendCount
The suspend count for the thread. If the suspend count is greater than zero, the thread is suspended; otherwise, the thread is not suspended. The maximum value is MAXIMUM_SUSPEND_COUNT.
- PriorityClass
The priority class of the thread. See Scheduling Priorities.
- Priority
The priority level of the thread.
- Teb
The thread environment block.
- Stack
A MINIDUMP_MEMORY_DESCRIPTOR structure.
- ThreadContext
A MINIDUMP_LOCATION_DESCRIPTOR structure.
- BackingStore
Intel IPF: The backing store for the thread.
Requirements
Redistributable |
Requires DbgHelp.dll 5.1 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
See Also
MINIDUMP_LOCATION_DESCRIPTOR
MINIDUMP_MEMORY_DESCRIPTOR
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.