Files
asterinas/kernel/src/ipc/semaphore/mod.rs
2024-08-23 23:37:50 +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();
}