Skip to main content

islet_rmm/granule/
mod.rs

1#[cfg(feature = "gst_page_table")]
2pub mod page_table;
3#[cfg(feature = "gst_page_table")]
4pub use page_table::*;
5
6#[cfg(not(feature = "gst_page_table"))]
7pub mod array;
8#[cfg(not(feature = "gst_page_table"))]
9pub use array::*;