blob: 8bd3f26bb09614fa202d32ef3ed0213e707b8605 (
plain)
1
2
3
4
5
6
|
//! Heap allocator constants
pub const SIZE_CLASSES = [_]usize{ 16, 32, 64, 128, 256, 512, 1024, 2048 };
pub const NUM_CACHES: usize = SIZE_CLASSES.len;
pub const LARGE_ALLOC_THRESHOLD: usize = 2048;
pub const MAX_LARGE_PAGES: usize = 64;
|