mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-26 19:03:27 +00:00
12 lines
203 B
Rust
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();
|
|
}
|