Table of Contents

Struct PositionedAllocationRequest

Namespace
MonoMod.Core.Platforms
Assembly
MonoMod.Core.dll
A memory allocation request which specifies a set of bounds which the allocation must fall into.
public readonly record struct PositionedAllocationRequest

Constructors

PositionedAllocationRequest(nint, nint, nint, AllocationRequest)
A memory allocation request which specifies a set of bounds which the allocation must fall into.

Properties

Base
The AllocationRequest specifying all other allocation parameters.
HighBound
The upper bound of allowed addresses that the allocation may be placed at.
LowBound
The lower bound of allowed addresses that the allocation may be placed at.
Target
The target address for the allocation. The allocator will attempt to allocate memory as close to this address as it can.