Constructor PositionedAllocationRequest
PositionedAllocationRequest(nint, nint, nint, AllocationRequest)
A memory allocation request which specifies a set of bounds which the allocation must fall into.
public PositionedAllocationRequest(nint Target, nint LowBound, nint HighBound, AllocationRequest Base)
Parameters
Targetnint- The target address for the allocation. The allocator will attempt to allocate memory as close to this address as it can.
LowBoundnint- The lower bound of allowed addresses that the allocation may be placed at.
HighBoundnint- The upper bound of allowed addresses that the allocation may be placed at.
BaseAllocationRequest- The AllocationRequest specifying all other allocation parameters.