Add System V semaphore basic support

This commit is contained in:
Yuke Peng
2024-08-10 18:50:09 +08:00
committed by Tate, Hongliang Tian
parent 6430ef1841
commit b7a5f797de
7 changed files with 650 additions and 0 deletions

View 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();
}