allocator-suite 0.1.7

Allocator Suite for various allocation types
1
2
3
4
5
6
7
8
9
10
11
12
#[allow(unused_imports)]
use super::*;

pub mod numa_allocation_policy;
pub mod numa_node_bit_set;
pub mod numa_settings;

pub mod prelude {
    pub use super::numa_allocation_policy::*;
    pub use super::numa_node_bit_set::*;
    pub use super::numa_settings::*;
}