mc-sgx-sync 0.1.0

Synchronization primitives for SGX enclaves
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2023 The MobileCoin Foundation

//! Platform specific concurrency locking primitives.

mod condvar;
mod mutex;
mod rwlock;

pub(crate) use condvar::Condvar;
pub(crate) use mutex::Mutex;
pub(crate) use rwlock::RwLock;