aboutsummaryrefslogtreecommitdiff
path: root/mirai.old/common/limits/fs.zig
blob: ca7103d6cc6ebd87b1794077d5a16cbc2876d2b6 (plain)
1
2
3
4
5
6
//! Filesystem limits

pub const MAX_LOCATION_LENGTH: usize = 4096;
pub const MAX_IDENTITY_LENGTH: usize = 255;
pub const MAX_UNIT_SIZE: u64 = 64 * 1024 * 1024; // 64MB
pub const MAX_STACK_ITEMS: usize = 4096;