diff options
| author | Ben Blum <bblum@andrew.cmu.edu> | 2012-08-14 23:35:12 -0400 |
|---|---|---|
| committer | Ben Blum <bblum@andrew.cmu.edu> | 2012-08-15 13:22:50 -0400 |
| commit | f29f308c1c7c611cda6e1fc8a56179296868d144 (patch) | |
| tree | 06257ff1711242b3d95410f14d957e5bb7639316 /src/libstd/sync.rs | |
| parent | d1fc7368c858a8280f2463e81e074a2c699b0819 (diff) | |
Enable multiple condvars on a single mutex_arc/rw_arc.
Diffstat (limited to 'src/libstd/sync.rs')
| -rw-r--r-- | src/libstd/sync.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/sync.rs b/src/libstd/sync.rs index c8a16b58d32..c8931eb8d0d 100644 --- a/src/libstd/sync.rs +++ b/src/libstd/sync.rs @@ -8,7 +8,8 @@ * in std. */ -export condvar, semaphore, mutex, rwlock, rwlock_write_mode, rwlock_read_mode; +export condvar, semaphore, mutex, mutex_with_condvars; +export rwlock, rwlock_with_condvars, rwlock_write_mode, rwlock_read_mode; // FIXME (#3119) This shouldn't be a thing exported from core. import unsafe::{Exclusive, exclusive}; |
