Share via


CodeChunkInfo Structure

Represents a single chunk of code in memory.

typedef struct _CodeChunkInfo {
    CORDB_ADDRESS startAddr;
    ULONG32       length;
} CodeChunkInfo;

Members

Member

Description

startAddr

A CORDB_ADDRESS value that specifies the starting address of the chunk.

length

The size, in bytes, of the chunk.

Remarks

The single chunk of code is a region of native code that is part of a code object such as a function.

Requirements

Platforms: See .NET Framework System Requirements.

Header: CorDebug.idl

Library: CorGuids.lib

.NET Framework Versions: 4, 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0

See Also

Reference

ICorDebugCode2::GetCodeChunks Method

Other Resources

Debugging Structures

Debugging (Unmanaged API Reference)