Skip to content

Commit

Permalink
sync::SgxX -> sync::X
Browse files Browse the repository at this point in the history
  • Loading branch information
nhynes authored and kostko committed Feb 25, 2018
1 parent 4edd06e commit 2905cfa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sgx_tstd/src/sync/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,12 @@ pub use core::sync::atomic;

pub use self::barrier::{Barrier, BarrierWaitResult};
pub use self::condvar::{SgxCondvar, SgxThreadCondvar};
pub use self::condvar::SgxCondvar as Condvar;
pub use self::condvar::SgxThreadCondvar as ThreadCondvar;
pub use self::mutex::{SgxMutex, SgxMutexGuard, SgxThreadMutex};
pub use self::mutex::SgxMutex as Mutex;
pub use self::mutex::SgxThreadMutex as ThreadMutex;
pub use self::mutex::SgxMutexGuard as MutexGuard;
pub use self::remutex::{SgxReentrantMutex, SgxReentrantMutexGuard, SgxReentrantThreadMutex};
pub use self::once::{Once, OnceState, ONCE_INIT};
pub use self::rwlock::{SgxRwLock, SgxRwLockReadGuard, SgxRwLockWriteGuard, SgxThreadRwLock};
Expand Down

0 comments on commit 2905cfa

Please sign in to comment.