Enum syscall::flag::PartialAllocStrategy [−][src]
#[repr(usize)]
pub enum PartialAllocStrategy {
Optimal,
GreatestRange,
Greedy,
}Variants
The allocator decides itself the size of the memory range, based on e.g. free memory ranges and other processes which require large physical memory chunks.
The allocator returns the absolute greatest range it can find.
The allocator returns the first range that fits the minimum count, without searching extra.