Files
asterinas/kernel/aster-nix/src/ipc/semaphore/mod.rs
2024-08-18 16:37:39 +08:00

12 lines
203 B
Rust

// SPDX-License-Identifier: MPL-2.0
//! Semaphore for the system, including System V semaphore and
//! POSIX semaphore.
pub mod posix;
pub mod system_v;
pub(super) fn init() {
system_v::init();
}