MINIDUMP_MISC_INFO_2 Structure

Debug Help Library

MINIDUMP_MISC_INFO_2 Structure

Represents information in the miscellaneous information stream.

typedef struct _MINIDUMP_MISC_INFO_2 {
ULONG32 SizeOfInfo;
ULONG32 Flags1;
ULONG32 ProcessId;
ULONG32 ProcessCreateTime;
ULONG32 ProcessUserTime;
ULONG32 ProcessKernelTime;
ULONG32 ProcessorMaxMhz;
ULONG32 ProcessorCurrentMhz;
ULONG32 ProcessorMhzLimit;
ULONG32 ProcessorMaxIdleState;
ULONG32 ProcessorCurrentIdleState; } MINIDUMP_MISC_INFO_2,
*PMINIDUMP_MISC_INFO_2;

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
0x00000001

ProcessId is used.

MINIDUMP_MISC1_PROCESS_TIMES
0x00000002

ProcessCreateTime, ProcessKernelTime, and ProcessUserTime are used.

MINIDUMP_MISC1_PROCESSOR_POWER_INFO
0x00000004

ProcessorMaxMhz, ProcessorCurrentMhz, ProcessorMhzLimit, ProcessorMaxIdleState, and ProcessorCurrentIdleState 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.

ProcessorMaxMhz

The maximum specified clock frequency of the system processor, in MHz. If Flags1 does not specify MINIDUMP_MISC1_PROCESSOR_POWER_INFO, this member is unused.

ProcessorCurrentMhz

The processor clock frequency, in MHz. This number is the maximum specified processor clock frequency multiplied by the current processor throttle. If Flags1 does not specify MINIDUMP_MISC1_PROCESSOR_POWER_INFO, this member is unused.

ProcessorMhzLimit

The limit on the processor clock frequency, in MHz. This number is the maximum specified processor clock frequency multiplied by the current processor thermal throttle limit. If Flags1 does not specify MINIDUMP_MISC1_PROCESSOR_POWER_INFO, this member is unused.

ProcessorMaxIdleState

The maximum idle state of the processor. If Flags1 does not specify MINIDUMP_MISC1_PROCESSOR_POWER_INFO, this member is unused.

ProcessorCurrentIdleState

The current idle state of the processor. If Flags1 does not specify MINIDUMP_MISC1_PROCESSOR_POWER_INFO, this member is unused.

Requirements

Redistributable

Requires DbgHelp.dll 6.5 or later.

Header

Declared in Dbghelp.h.

See Also

MINIDUMP_STREAM_TYPE


Send comments about this topic to Microsoft

Build date: 9/25/2007

© 2007 Microsoft Corporation. All rights reserved.