about summary refs log tree commit diff
path: root/src/libstd/sync.rs
AgeCommit message (Collapse)AuthorLines
2013-01-11Make std::sync::semaphore() publicJens Nockert-1/+1
2013-01-11Adds priv qualifiers where they have been commented out before implementation.William Ting-4/+4
Updates #4386.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+5
module scope. r=tjc
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the ↵Patrick Walton-5/+0
nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+5
module scope. r=tjc
2012-12-28libstd: Fix tests. rs=bustagePatrick Walton-0/+3
2012-12-27libstd: Fix a bunch of resolve errors in tests. rs=firePatrick Walton-0/+6
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ↵Patrick Walton-1/+7
contain at least two components. r=graydon
2012-12-13Rename Send trait to OwnedBrian Anderson-5/+5
2012-12-11Reverse the order of the results of pipes::streamTim Chevalier-18/+18
As per #3637.
2012-12-06make bblum happyTim Chevalier-17/+6
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-29librustc: Make the Drop trait use explicit selfPatrick Walton-9/+9
2012-11-27core: Add Clone traitBrian Anderson-4/+10
2012-11-14Convert libstd to use the Drop traitBen Striegel-41/+76
2012-11-14Revert "Convert libstd to use the Drop trait"Brian Anderson-76/+41
This reverts commit 28c7a251514919a2d7bdf6c67b8edf5eed9043db.
2012-11-14Convert libstd to use the Drop traitBen Striegel-41/+76
2012-10-23Remove uses of binary move - <- - from tests and librariesTim Chevalier-1/+1
2012-10-12Make moves explicit in std testsTim Chevalier-37/+37
2012-10-11Update FIXME numberTim Chevalier-3/+3
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-04De-mode comm::ChanTim Chevalier-2/+2
2012-10-03Remove uses of + mode from libstdTim Chevalier-7/+7
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-10-01Move over to calling ptr::addr_ofTim Chevalier-2/+2
Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that.
2012-09-28De-export std::{arc,comm,sync}. Part of #3583.Graydon Hoare-10/+7
2012-09-28std: Eliminate deprecated patternsBrian Anderson-1/+0
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-4/+4
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-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-2/+2
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+1
#[legacy_exports];
2012-09-18Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵Niko Matsakis-2/+2
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-2/+2
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-11Introduce auto adjustment table to subsume autoderef/autoref/borrowings.Niko Matsakis-2/+2
Fixes #3261 Fixes #3443
2012-09-11Make moves explicit in argumentsTim Chevalier-1/+1
2012-09-10Make remaining moves explicit in libstdTim Chevalier-6/+6
2012-09-08std: cleanup in sync.rs for things missed in last rebaseJeff Olson-9/+9
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-3/+3
2012-09-07Convert field terminators to commas. Stop parsing semis.Brian Anderson-21/+21
2012-09-04WhitespaceBrian Anderson-1/+0
2012-09-04std: Remove struct ctorsBrian Anderson-6/+40
2012-09-04libstd: "import" -> "use"Patrick Walton-1/+1
2012-09-01Demode reinterpret_castBrian Anderson-2/+2
2012-08-29std: Camel case some constructorsBrian Anderson-31/+31
2012-08-28Convert core::pipes to camel caseBrian Anderson-6/+6
2012-08-27Convert core::result to camel caseBrian Anderson-4/+4
2012-08-26convert std::sync types to camelcaseBen Blum-128/+128
2012-08-26Camel case the option typeBrian Anderson-29/+29
2012-08-25Use region variance to remove a bunch of unsafety in sync/arc (#2282)Ben Blum-9/+3