mc_sgx_tstdc/lib.rs
1// Copyright (c) 2023-2024 The MobileCoin Foundation
2
3#![doc = include_str!("../README.md")]
4#![deny(missing_docs, missing_debug_implementations)]
5#![no_std]
6
7mod condvar;
8mod mutex;
9mod rwlock;
10pub use condvar::{Condvar, Error as CondvarError};
11pub use mutex::{Error as MutexError, Mutex};
12pub use rwlock::{Error as RwLockError, RwLock};