summary refs log tree commit diff
path: root/src/libstd/arc.rs
AgeCommit message (Collapse)AuthorLines
2012-10-11Remove comment that is now falseTim Chevalier-2/+2
2012-10-04Remove by-copy mode from std, mostlyTim Chevalier-1/+1
One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes.
2012-10-03Remove uses of + mode from libstdTim Chevalier-11/+11
More or less the same as my analogous commit for libcore. Had to remove the forbid(deprecated_modes) pragma from some files -- will restore it after the snapshot.
2012-09-28De-export std::{arc,comm,sync}. Part of #3583.Graydon Hoare-17/+12
2012-09-28Long linesBrian Anderson-2/+2
2012-09-28std: Eliminate deprecated patternsBrian Anderson-1/+0
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-2/+2
2012-09-23Make it illegal to use modes in a fn signature with providingNiko Matsakis-1/+1
an explicit variable name. (Step one to changing the defaults) First step to #3535
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+1
#[legacy_exports];
2012-09-19De-mode vec::each() and many of the str iteration routinesNiko Matsakis-3/+6
Note that the method foo.each() is not de-moded, nor the other vec routines.
2012-09-18Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵Niko Matsakis-8/+5
demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready.
2012-09-18replace explicit calls to vec::each with vec::each_ref, partially demode strNiko Matsakis-5/+8
2012-09-18core: Rename 'unsafe' mod to 'cast'Brian Anderson-2/+2
2012-09-18core: Move Exclusive and SharedMutableState to the private modBrian Anderson-1/+1
2012-09-10Convert 'import' to 'use'. Remove 'import' keyword.Brian Anderson-1/+1
2012-09-10Make remaining moves explicit in libstdTim Chevalier-19/+19
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-22/+22
2012-09-07Convert field terminators to commas. Stop parsing semis.Brian Anderson-8/+8
2012-09-04std: Remove struct ctorsBrian Anderson-1/+6
2012-09-04libstd: "import" -> "use"Patrick Walton-3/+2
2012-08-29std: Camel case some constructorsBrian Anderson-21/+21
2012-08-27Fix region-related unsafety in arc::get's signatureBen Blum-1/+1
2012-08-26convert std::arc types to camelcaseBen Blum-77/+78
2012-08-26convert std::sync types to camelcaseBen Blum-7/+8
2012-08-26Camel case the option typeBrian Anderson-1/+1
2012-08-25Use region variance to remove a bunch of unsafety in sync/arc (#2282)Ben Blum-45/+12
2012-08-22export unwrap_arc functions in core/stdBen Blum-1/+2
2012-08-21more sound treatment of fn& regions; change all & to be distinctNiko Matsakis-1/+1
2012-08-20Document arc::unwrap. Close #3123.Ben Blum-0/+22
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