Enum memadvise::Advice [] [src]

pub enum Advice {
    Normal,
    Sequential,
    Random,
    WillNeed,
    DontNeed,
}

Variants

No special usage

Will access memory block in order from low address to high address; OS should aggressively read ahead

Will access random chunks from memory block; OS may not have to read ahead

Will need to access this memory block soon; OS should read ahead

Will NOT need to access this memory block soon