mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-19 12:36:46 +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;
|