about summary refs log tree commit diff
path: root/src/libstd/arc.rs
AgeCommit message (Collapse)AuthorLines
2012-08-20oops, remove #[cfg(stage1)]s from arc::unwrap functions+testsBen Blum-4/+0
2012-08-20Add unwrap for std::arc ARC variantsBen Blum-2/+48
2012-08-16Update the rock-paper-scissors example in the tutorial, and rename some ↵Eric Holk-1/+1
types in core::pipes
2012-08-16Add std::comm with DuplexStreamEric Holk-4/+3
2012-08-15sync+arc - comments and attributes onlyBen Blum-0/+5
2012-08-15Enable multiple condvars on a single mutex_arc/rw_arc.Ben Blum-14/+54
2012-08-14De-mode comm, libc, priv, rt, sync, arc. Super easy.Ben Blum-0/+3
2012-08-14Add rw_arc.downgrade() + std and cfail tests. Tons of region FIXMEs... (cf ↵Ben Blum-8/+223
#2282, #3154)
2012-08-13De-mode core::future.Graydon Hoare-1/+1
2012-08-13core: Camel case some lesser-used modulesBrian Anderson-4/+5
2012-08-13Enable condvars on ARCsBen Blum-24/+104
2012-08-10Implement mutex_arc and rw_arc; add some testsBen Blum-0/+273
2012-08-10Split libcore/arc.rs: arc -> std::arc; exclusive -> unsafe::exclusiveBen Blum-0/+83
2012-06-19Moved arc to libcore and added an arc that allows shared mutable state ↵Eric Holk-163/+0
through mutual exclusion.
2012-06-16Revert "Moved arc to libstd and added an arc that allows shared mutable ↵Tim Chevalier-0/+163
state through mutual exclusion." This reverts commit 015527b0cee0bc5cfaac8dd610035a0c1b2f8ea6.
2012-06-15Moved arc to libstd and added an arc that allows shared mutable state ↵Eric Holk-163/+0
through mutual exclusion.
2012-06-08Convert reinterpret_cast + forget to 'transmute'Brian Anderson-2/+1
2012-06-06constrain scope of mut ptr to please borrowckNiko Matsakis-3/+1
2012-06-01squelch warnings in testsNiko Matsakis-1/+1
2012-05-30Rewriting shared_arc to work around Issue #2444.Eric Holk-15/+42
Sadly, this exposes another ICE when trying to use the new version with Graph500
2012-05-29Moving the arc tests into arc.rs.Eric Holk-0/+31
2012-05-29Adding shared_arc to hide some of the tedium of sharing an arc between tasks.Eric Holk-7/+42
Also added some asserts and logging to trans. Modified graph500 to use the shared_arc, but this unfortunately doesn't work due to #2444.
2012-05-25std: Modify arc to tolerate upcoming change to uniquesBrian Anderson-7/+14
2012-05-24Some comments giving some idea how to use these things.Eric Holk-2/+10
2012-05-24rewrite arc to use region & expressions (also making it pass borrowck)Niko Matsakis-5/+4
2012-05-23A shareable atomically reference counted pointer wrapper.Eric Holk-0/+59
Needs more tests to ensure safety, and probably some more work on usability too.