aligned_vmem/min_page.rs
1use super::page::PAGE;
2
3/// Alias for [`PAGE`] under a name that doesn't imply "the OS page size".
4///
5/// Prefer this name in new code — it makes explicit that the value is the
6/// *minimum* decommit/recommit granularity, not necessarily the actual OS page
7/// size (which may be larger — see [`page_size`](crate::page_size::page_size)).
8pub const MIN_PAGE: usize = PAGE;