twizzler_abi/object.rs
1//! Low-level object APIs, mostly around IDs and basic things like protection definitions and
2//! metadata.
3
4/// The maximum size of an object, including null page and meta page(s).
5pub const MAX_SIZE: usize = 1024 * 1024 * 1024;
6/// The size of the null page.
7pub const NULLPAGE_SIZE: usize = 0x1000;
8
9pub use twizzler_rt_abi::object::{ObjID, Protections};