| Age | Commit message (Expand) | Author | Lines |
| 2013-07-20 | Replace *rust_task ptrs in taskgroup code with TaskHandle, for transitioning ... | Ben Blum | -128/+202 |
| 2013-07-20 | Change the HOF context switchers to pass a BlockedTask instead of a ~Task. | Ben Blum | -1/+2 |
| 2013-07-20 | Implement KillHandle::kill() and friends (unkillable, atomically). Close #6377. | Ben Blum | -35/+77 |
| 2013-07-20 | Add kill::Death for task death services and use it in Task. | Ben Blum | -1/+1 |
| 2013-07-18 | auto merge of #7856 : brson/rust/no-thread-per-core, r=pcwalton | bors | -21/+1 |
| 2013-07-17 | librustc: Remove all uses of the `Copy` bound. | Patrick Walton | -2/+4 |
| 2013-07-17 | auto merge of #7841 : alexcrichton/rust/tls++, r=huonw | bors | -15/+69 |
| 2013-07-16 | Add a `get_mut` method for TLS | Alex Crichton | -15/+69 |
| 2013-07-16 | Rename Option swap_unwrap to take_unwrap. Fixes Issue#7764 | Austin King | -3/+3 |
| 2013-07-14 | Make TLS keys actually take up space | Alex Crichton | -9/+13 |
| 2013-07-14 | Purge the last remnants of the old TLS api | Alex Crichton | -4/+3 |
| 2013-07-13 | Split mutable methods out of Set and Map | Steven Fackler | -1/+1 |
| 2013-07-11 | auto merge of #7677 : alexcrichton/rust/tls-gc, r=pcwalton | bors | -170/+462 |
| 2013-07-11 | Fix a soundness problem with `get` | Alex Crichton | -31/+71 |
| 2013-07-11 | Work around stage0 to remove '@' requirements from TLS | Alex Crichton | -70/+289 |
| 2013-07-09 | std: Remove ThreadPerCore spawn mode. Unused | Brian Anderson | -21/+1 |
| 2013-07-09 | Rename local_data methods/types for less keystrokes | Alex Crichton | -5/+5 |
| 2013-07-09 | Change TLS to almost be able to contain owned types | Alex Crichton | -74/+138 |
| 2013-07-09 | Change the elements in the task-local map to be actual key-value pairs | Alex Crichton | -124/+104 |
| 2013-07-09 | Use purely an owned vector for storing TLS data | Alex Crichton | -47/+36 |
| 2013-07-08 | std: Add a yield implementation for newsched | Brian Anderson | -4/+19 |
| 2013-07-08 | Merge remote-tracking branch 'mozilla/master' | Brian Anderson | -2/+2 |
| 2013-07-07 | remove some method resolve workarounds | Daniel Micay | -2/+2 |
| 2013-07-03 | Merge remote-tracking branch 'mozilla/master' | Brian Anderson | -24/+24 |
| 2013-07-01 | Refactored the runtime to view coroutines as a component of tasks, instead of... | toddaaro | -8/+20 |
| 2013-06-29 | Removing a lot of usage of '&const' | Alex Crichton | -1/+1 |
| 2013-06-29 | 'Borrow' stack closures rather than copying them (e.g., "|x|f(x)"), in prep f... | Ben Blum | -0/+4 |
| 2013-06-28 | libextra: Fix even more merge fallout. | Patrick Walton | -1/+0 |
| 2013-06-28 | librustc: Disallow "mut" from distributing over bindings. | Patrick Walton | -1/+3 |
| 2013-06-28 | librustc: Change "Owned" to "Send" everywhere | Patrick Walton | -4/+4 |
| 2013-06-28 | std: silence some test warnings. | Huon Wilson | -8/+6 |
| 2013-06-26 | auto merge of #7113 : alexcrichton/rust/banned-warnings, r=cmr | bors | -1/+1 |
| 2013-06-25 | auto merge of #7269 : luqmana/rust/drop, r=thestinger | bors | -2/+2 |
| 2013-06-25 | Change finalize -> drop. | Luqman Aden | -2/+2 |
| 2013-06-25 | Deny common lints by default for lib{std,extra} | Alex Crichton | -1/+1 |
| 2013-06-25 | remove `each` from vec, HashMap and HashSet | Daniel Micay | -1/+1 |
| 2013-06-24 | std: Make unlinking and task notification work with newsched | Brian Anderson | -3/+19 |
| 2013-06-21 | vec: rm old_iter implementations, except BaseIter | Daniel Micay | -2/+2 |
| 2013-06-20 | Merge remote-tracking branch 'brson/io' into io-upstream | Brian Anderson | -15/+10 |
| 2013-06-21 | libstd: cleanup warnings | James Miller | -1/+0 |
| 2013-06-18 | replace #[inline(always)] with #[inline]. r=burningtree. | Graydon Hoare | -2/+2 |
| 2013-06-16 | Merge remote-tracking branch 'brson/io' | Brian Anderson | -15/+10 |
| 2013-06-16 | Remove moves from *T and implement in another way | Niko Matsakis | -14/+3 |
| 2013-06-15 | Merge remote-tracking branch 'brson/io-wip' into io | Brian Anderson | -14/+9 |
| 2013-06-14 | redesigned the pinning to pin deal with things on dequeue, not on enqueue | toddaaro | -1/+1 |
| 2013-06-13 | std::rt: Tasks must have an unwinder. Simpler | Brian Anderson | -11/+2 |
| 2013-06-13 | std::rt: Change the Task constructors to reflect a tree | Brian Anderson | -1/+8 |
| 2013-06-13 | Remove unused imports | Steven Stewart-Gallus | -1/+1 |
| 2013-06-11 | option: remove redundant old_iter impls | Daniel Micay | -3/+4 |
| 2013-06-10 | debugged a compiler ICE when merging local::borrow changes into the main io b... | toddaaro | -1/+1 |