mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-30 00:23:24 +00:00
Add System V semaphore basic support
This commit is contained in:
committed by
Tate, Hongliang Tian
parent
6430ef1841
commit
b7a5f797de
11
kernel/aster-nix/src/ipc/semaphore/mod.rs
Normal file
11
kernel/aster-nix/src/ipc/semaphore/mod.rs
Normal file
@ -0,0 +1,11 @@
|
||||
// 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();
|
||||
}
|
Reference in New Issue
Block a user