Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Contains extended thread information for the MiniDumpCallback function when the callback type is ThreadExCallback.
Syntax
typedef struct _MINIDUMP_THREAD_EX_CALLBACK {
ULONG ThreadId;
HANDLE ThreadHandle;
ULONG Pad;
CONTEXT Context;
ULONG SizeOfContext;
ULONG64 StackBase;
ULONG64 StackEnd;
ULONG64 BackingStoreBase;
ULONG64 BackingStoreEnd;
} MINIDUMP_THREAD_EX_CALLBACK, *PMINIDUMP_THREAD_EX_CALLBACK;
Members
ThreadId
The identifier of the thread.
ThreadHandle
A handle to the thread
Pad
Context
A CONTEXT structure that contains the processor-specific data.
SizeOfContext
The size of the returned processor-specific data in the Context member, in bytes.
StackBase
The base address of the thread stack.
StackEnd
The ending address of the thread stack.
BackingStoreBase
Intel Itanium: The base address of the thread backing store.
BackingStoreEnd
Intel Itanium: The ending address of the thread backing store.
Requirements
Requirement | Value |
---|---|
Header | minidumpapiset.h (include DbgHelp.h) |
Redistributable | DbgHelp.dll 5.1 or later |