summary refs log tree commit diff
path: root/src/libcore/arc.rs
AgeCommit message (Collapse)AuthorLines
2012-07-05Arc requires send trait (issue #2788)Eric Holk-4/+4
2012-07-05Remove create_lock in favor of lock_and_signal() (issue #2780)Eric Holk-1/+1
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-10/+16
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-04Remove empty argument lists from do expressionsBen Striegel-2/+2
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-1/+1
2012-07-03core: Import future::extensionsPatrick Walton-1/+1
2012-07-01Convert to new closure syntaxBrian Anderson-12/+10
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-7/+7
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-6/+6
2012-06-27Mark exclusive arc-related functions as unsafe. Fixes #2727.Eric Holk-13/+11
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-5/+5
2012-06-21[NEEDS SNAPSHOT] Port remainder of resources to classes in libcoreTim Chevalier-19/+25
2012-06-21Remove some warnings and make tests pass.Eric Holk-3/+0
2012-06-21Basic functionality for new ports and chansEric Holk-6/+11
The first benchmark shows about twice the throughput of the old system.
2012-06-19Temporarily ignoring tests that can go into infinite loops.Eric Holk-0/+1
2012-06-19Reference fixes.Eric Holk-4/+7
2012-06-19Moved arc to libcore and added an arc that allows shared mutable state ↵Eric Holk-0/+231
through mutual exclusion.
2012-06-16Revert "Moved arc to libstd and added an arc that allows shared mutable ↵Tim Chevalier-231/+0
state through mutual exclusion." This reverts commit 015527b0cee0bc5cfaac8dd610035a0c1b2f8ea6.
2012-06-16Revert "Reference and whitespace fixes."Tim Chevalier-7/+4
This reverts commit 52f1904ddde95fb7d8e654b4cc78a4f162385275.
2012-06-15Reference and whitespace fixes.Eric Holk-4/+7
2012-06-15Moved arc to libstd and added an arc that allows shared mutable state ↵Eric Holk-0/+231
through mutual exclusion.