blob: b0626f2916645b8ae6cd8800cb46eaf71e8c3225 (
plain)
1
2
3
4
5
6
|
//! Filesystem limits
pub const MAX_LOCATION_LENGTH: usize = 255;
pub const MAX_IDENTITY_LENGTH: usize = 255;
pub const MAX_UNIT_SIZE: u64 = 1024 * 1024;
pub const MAX_STACK_ITEMS: usize = 32;
|