sel4_sync/
lib.rs

1//
2// Copyright 2023, Colias Group, LLC
3//
4// SPDX-License-Identifier: MIT
5//
6
7#![no_std]
8
9pub use lock_api;
10
11mod mutex;
12
13pub use mutex::{RawDeferredNotificationMutex, RawLazyNotificationMutex, RawNotificationMutex};