allocator-suite 0.1.7

Allocator Suite for various allocation types
1
2
3
4
5
6
7
8
9
10
11
pub mod huge_page_size;
pub mod memory_map_source;

/// NUMA memory mapping.
pub mod numa;

pub mod prelude {
    pub use super::huge_page_size::*;
    pub use super::memory_map_source::*;
    pub use super::numa::prelude::*;
}