| Age | Commit message (Expand) | Author | Lines |
| 2013-11-26 | libstd: Remove all non-`proc` uses of `do` from libstd | Patrick Walton | -4/+1 |
| 2013-11-24 | Remove linked failure from the runtime | Alex Crichton | -713/+30 |
| 2013-11-19 | libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstd | Patrick Walton | -4/+3 |
| 2013-11-18 | libstd: Change all `~fn()`s to `proc`s in the standard library. | Patrick Walton | -4/+5 |
| 2013-11-01 | Remove unnecessary unwind messages | Alex Crichton | -2/+2 |
| 2013-10-30 | Prepared `std::sys` for removal, and made `begin_unwind` simpler | Marvin Löbel | -2/+2 |
| 2013-10-28 | Allow fail messages to be caught, and introduce the Any trait | Marvin Löbel | -11/+23 |
| 2013-10-23 | Removed Unnecessary comments and white spaces #4386 | reedlepee | -7/+6 |
| 2013-10-23 | Making fields in std and extra : private #4386 | reedlepee | -6/+7 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -4/+4 |
| 2013-10-09 | option: rewrite the API to use composition | Daniel Micay | -7/+7 |
| 2013-09-30 | std: Remove usage of fmt! | Alex Crichton | -5/+5 |
| 2013-09-25 | rustdoc: Change all code-blocks with a script | Alex Crichton | -2/+2 |
| 2013-09-16 | switch Drop to `&mut self` | Daniel Micay | -2/+2 |
| 2013-08-27 | auto merge of #8790 : huonw/rust/unsafearc, r=thestinger | bors | -7/+7 |
| 2013-08-27 | Rename UnsafeAtomicRcBox to UnsafeArc. Fixes #7674. | Huon Wilson | -7/+7 |
| 2013-08-27 | Decrement unkillable counter before failing | Flaper Fesp | -1/+3 |
| 2013-08-27 | Don't make the runtime exit on illegal calls | Flaper Fesp | -1/+3 |
| 2013-08-23 | Document the task watching / exit code propagation implementation. | Ben Blum | -1/+85 |
| 2013-08-16 | Reserve 'yield' keyword | Kevin Ballard | -5/+5 |
| 2013-08-12 | Clean up transitionary glue in task/spawn.rs. Don't hold kill-little-lock for... | Ben Blum | -2/+2 |
| 2013-08-10 | std: Rename Iterator.transform -> .map | Erick Tryzelaar | -1/+1 |
| 2013-08-10 | Mass rename of .consume{,_iter}() to .move_iter() | Erick Tryzelaar | -1/+1 |
| 2013-08-08 | auto merge of #8385 : cmr/rust/big-rollup, r=alexcrichton | bors | -1/+2 |
| 2013-08-07 | (cleanup) Improve rtabort message for atomic-sleep. | Ben Blum | -1/+2 |
| 2013-08-07 | Disable linked failure tests | Brian Anderson | -0/+6 |
| 2013-08-07 | std: removed option.take_map{,_default} | Erick Tryzelaar | -5/+5 |
| 2013-08-07 | core: option.map_consume -> option.map_move | Erick Tryzelaar | -2/+2 |
| 2013-08-05 | Lazily initialize 'leaf node' taskgroups for unlinked spawns, for an apparent... | Ben Blum | -0/+4 |
| 2013-08-05 | (cleanup) Uncomment an assertion that now holds. | Ben Blum | -5/+4 |
| 2013-08-02 | Don't fail from kill signals if already unwinding. | Ben Blum | -2/+2 |
| 2013-08-02 | Fix embarrassing bug where 'unkillable' would unwind improperly when it recei... | Ben Blum | -2/+3 |
| 2013-08-01 | Temporary workaround to prevent taskgroup cleanup code from failing without a... | Ben Blum | -1/+6 |
| 2013-08-01 | Document task killing design and relaxed barrier rationale. | Ben Blum | -1/+57 |
| 2013-08-01 | Relax some atomic barriers. Loosen up all that tension. There, doesn't that f... | Ben Blum | -10/+13 |
| 2013-07-31 | Move atomically to unstable::sync, and document what it actually does. Close ... | Ben Blum | -1/+1 |
| 2013-07-30 | UnsafeArc methods return unsafe pointers, so are not themselves unsafe. | Ben Blum | -10/+10 |
| 2013-07-30 | Implement select() for new runtime pipes. | Ben Blum | -3/+30 |
| 2013-07-27 | Change concurrency primitives to standard naming conventions | Steven Stewart-Gallus | -2/+2 |
| 2013-07-20 | Add watched and indestructible spawn modes. | Ben Blum | -1/+1 |
| 2013-07-20 | Replace *rust_task ptrs in taskgroup code with TaskHandle, for transitioning ... | Ben Blum | -0/+12 |
| 2013-07-20 | Stash a spare kill flag inside tasks, to save two atomic xadds in the blockin... | Ben Blum | -37/+75 |
| 2013-07-20 | Add tests for task killing and blocking. | Ben Blum | -0/+140 |
| 2013-07-20 | Add BlockedTask (wake, try_block, etc) in kill.rs. | Ben Blum | -2/+95 |
| 2013-07-20 | Do a task-killed check at the start of task 'timeslices'. | Ben Blum | -1/+27 |
| 2013-07-20 | Implement KillHandle::kill() and friends (unkillable, atomically). Close #6377. | Ben Blum | -2/+150 |
| 2013-07-20 | Add tests for KillHandle | Ben Blum | -0/+140 |
| 2013-07-20 | Add kill::Death for task death services and use it in Task. | Ben Blum | -0/+67 |
| 2013-07-20 | Add KillHandle and implement exit code propagation to replace join_latch | Ben Blum | -0/+128 |