rust/src/libstd/sync
Ralf Jung 71534c45cc RwLock guards are Sync if T is
Currently, the compiler requires `T` to also be `Send`.  There is no reason for
that.  `&Rw{Read,Write}LockGuard` only provides a shared referenced to `T`, sending
that across threads is safe if `T` is `Sync`.
2017-11-01 13:39:44 +01:00
..
mpsc Auto merge of #44963 - JLockerman:fix_spsc, r=alexcrichton 2017-10-11 19:32:19 +00:00
barrier.rs Use explicit wrapping_add to prevent potential unexpected behavior on debug builds 2017-08-08 22:58:09 +02:00
condvar.rs Fix condvar.wait(distant future) return immediately on OSX 2017-06-15 21:20:02 +01:00
mod.rs std: Clean out deprecated APIs 2016-07-12 12:51:13 -07:00
mutex.rs Rollup merge of #44775 - MaloJaffre:debug-struct, r=sfackler 2017-10-10 22:43:57 +08:00
once.rs Bump to 1.23 and update bootstrap 2017-10-26 13:59:18 -07:00
rwlock.rs RwLock guards are Sync if T is 2017-11-01 13:39:44 +01:00