MINIDUMP_MISC_INFO Structure
Contains a variety of information.
typedef struct _MINIDUMP_MISC_INFO {
ULONG32 SizeOfInfo;
ULONG32 Flags1;
ULONG32 ProcessId;
ULONG32 ProcessCreateTime;
ULONG32 ProcessUserTime;
ULONG32 ProcessKernelTime; } MINIDUMP_MISC_INFO,
*PMINIDUMP_MISC_INFO;
Members
- SizeOfInfo
The size of the structure, in bytes.
- Flags1
The flags that indicate the valid members of this structure. This member can be one or more of the following values.
Value Meaning MINIDUMP_MISC1_PROCESS_ID
0x00000001ProcessId is used.
MINIDUMP_MISC1_PROCESS_TIMES
0x00000002ProcessCreateTime, ProcessKernelTime, and ProcessUserTime are used.
- ProcessId
The identifier of the process. If Flags1 does not specify MINIDUMP_MISC1_PROCESS_ID, this member is unused.
- ProcessCreateTime
The creation time of the process, in time_t format. If Flags1 does not specify MINIDUMP_MISC1_PROCESS_TIMES, this member is unused.
- ProcessUserTime
The time the process has executed in user mode, in seconds. The time that each of the threads of the process has executed in user mode is determined, then all these times are summed to obtain this value. If Flags1 does not specify MINIDUMP_MISC1_PROCESS_TIMES, this member is unused.
- ProcessKernelTime
The time the process has executed in kernel mode, in seconds. The time that each of the threads of the process has executed in kernel mode is determined, then all these times are summed to obtain this value. If Flags1 does not specify MINIDUMP_MISC1_PROCESS_TIMES, this member is unused.
Requirements
Redistributable |
Requires DbgHelp.dll 6.0 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
See Also
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.