Edit

ISOSDacInterface::GetCodeHeapList Method

Retrieves the list of code heaps for the specified JIT manager.

Note

This API was originally designed for internal use in the runtime. Although it is now supported for 3rd party use, we recommend working with ICorDebug and ICorProfiler APIs when possible.

Syntax

HRESULT GetCodeHeapList(CLRDATA_ADDRESS jitManager, unsigned int count, struct DacpJitCodeHeapInfo *codeHeaps, unsigned int *pNeeded);

Parameters

jitManager
[in] The address of the JIT manager whose code heaps to retrieve.

count
[in] The number of elements available in the codeHeaps array.

codeHeaps
[out] A pointer to an array of DacpJitCodeHeapInfo structures that receives the code heap data.

pNeeded
[out] A pointer to the number of code heap entries required.

Remarks

The provided method is part of the ISOSDacInterface interface and corresponds to the 69th slot of the virtual method table.

Requirements

Platforms: See System Requirements.
Header: None
Library: None
.NET Framework Versions: Available since 4.7

See also