about summary refs log tree commit diff
path: root/src/libcore/task/local_data.rs
AgeCommit message (Collapse)AuthorLines
2013-05-10Move core::task::local_data to core::local_dataYoungsoo Son-226/+0
2013-05-07core: Replace Durable with 'staticBrian Anderson-4/+4
2013-05-07Add some tests for local data + borrowed pointersBrian Anderson-0/+9
2013-04-24core: Warning policeBrian Anderson-1/+0
2013-04-23Merge remote-tracking branch 'brson/io'Brian Anderson-5/+5
This also reverts some changes to TLS that were leaking memory. Conflicts: src/libcore/rt/uv/net.rs src/libcore/task/local_data_priv.rs src/libcore/unstable/lang.rs
2013-04-22core::rt Wire up task-local storage to the new schedulerBrian Anderson-5/+5
2013-04-19core: clean up tests (mostly unused unsafe blocks)Alex Crichton-21/+17
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-9/+9
2013-03-26librustc: Modify all code to use new lifetime binder syntaxPatrick Walton-1/+1
2013-03-18librustc: Convert all uses of old lifetime notation to new lifetime ↵Patrick Walton-1/+1
notation. rs=delifetiming
2013-03-11librustc: Replace all uses of `fn()` with `&fn()`. rs=defunPatrick Walton-1/+1
2013-03-07test: Fix tests.Patrick Walton-1/+2
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-9/+9
2013-03-06Add manual &self/ and &static/ and /&self declarations thatNiko Matsakis-1/+1
are currently inferred. New rules are coming that will require them to be explicit. All add some explicit self declarations.
2013-03-04Remove unused imports throughout src/Alex Crichton-1/+0
2013-03-02librustc: Forbid chained imports and fix the logic for one-level renaming ↵Patrick Walton-1/+1
imports
2013-02-20librustc: Separate most trait bounds with '+'. rs=plussingPatrick Walton-4/+4
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-5/+5
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-5/+5
2013-01-29librustc: Disallow trait bounds in types, enumerations, and structure ↵Patrick Walton-1/+1
definitions. r=tjc
2013-01-23libsyntax: Remove `fn() unsafe { ... }`. r=graydonPatrick Walton-74/+99
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+1
module scope. r=tjc
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the ↵Patrick Walton-1/+0
nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+1
module scope. r=tjc
2012-12-27librustc: Fix the test runner, the condition system, and core test. rs=bustagePatrick Walton-0/+1
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ↵Patrick Walton-6/+2
contain at least two components. r=graydon
2012-12-13Rename Owned trait to DurableBrian Anderson-5/+5
2012-12-13librustc: Make `use` statements crate-relative by default. r=brsonPatrick Walton-1/+1
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-10-03core: Make some parts of task privateBrian Anderson-8/+8
2012-10-02Removing explicit uses of + modeTim Chevalier-16/+16
This removes most explicit uses of the + argument mode. Pending a snapshot, I had to remove the forbid(deprecated_modes) pragma from a bunch of files. I'll put it back! + mode still has to be used in a few places for functions that get moved (see task.rs) The changes outside core and std are due to the to_bytes trait and making the compiler (with legacy modes on) agree with the libraries (with legacy modes off) about modes.
2012-09-28core: Demode patternsBrian Anderson-2/+2
2012-09-26libcore: De-export ptr, send_map, and task::local_dataPatrick Walton-19/+13
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-19core: Decompose task into more submodulesBrian Anderson-4/+4
2012-09-19core: Cleanup task_local docsBrian Anderson-7/+9
2012-09-19core: Split local_data into local_data/local_data_privBrian Anderson-160/+7
2012-09-19core: Move TLS to task::local_dataBrian Anderson-0/+346