rust/src/libstd/sync
bors acb1ec0b67 auto merge of #11230 : csherratt/rust/cow, r=alexcrichton
This allows patch adds a new arc type that allows for creation of copy-on-write data structures. The idea is that it is safe to mutate any data structure as long as it has only one reference to it. If there are multiple, it requires cloning of the data structure before mutation is possible.
2014-02-04 14:41:36 -08:00
..
arc.rs Add a copy-on-write container. 2013-12-31 14:31:23 -05:00
atomics.rs Register new snapshots 2014-02-04 00:06:08 -08:00
deque.rs Removing do keyword from libstd and librustc 2014-01-29 09:15:41 -05:00
mod.rs std: Introduce std::sync 2013-12-24 14:42:00 -08:00
mpmc_bounded_queue.rs Make next_power_of_two generic for unsigned integers 2014-02-01 13:02:53 +11:00
mpsc_queue.rs Removing do keyword from libstd and librustc 2014-01-29 09:15:41 -05:00
spsc_queue.rs Removing do keyword from libstd and librustc 2014-01-29 09:15:41 -05:00