mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-25 02:13:24 +00:00
7 lines
139 B
Rust
7 lines
139 B
Rust
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//! constants used in syscall
|
|
|
|
/// LONGEST ALLOWED FILENAME
|
|
pub const MAX_FILENAME_LEN: usize = 4096;
|