| Age | Commit message (Expand) | Author | Lines |
| 2013-07-20 | (cleanup) Don't check taskgroup generation monotonicity unless cfg(test). | Ben Blum | -16/+16 |
| 2013-07-20 | (cleanup) Modernize taskgroup code for the new borrow-checker. | Ben Blum | -61/+20 |
| 2013-07-20 | Replace *rust_task ptrs in taskgroup code with TaskHandle, for transitioning ... | Ben Blum | -128/+219 |
| 2013-07-20 | Add option::take(), the building block of the option::take_* family. | Ben Blum | -3/+9 |
| 2013-07-20 | Stash a spare kill flag inside tasks, to save two atomic xadds in the blockin... | Ben Blum | -37/+87 |
| 2013-07-20 | Add tests for task killing and blocking. | Ben Blum | -0/+140 |
| 2013-07-20 | Add test::with_test_task() convenience function. | Ben Blum | -1/+11 |
| 2013-07-20 | Change the HOF context switchers to pass a BlockedTask instead of a ~Task. | Ben Blum | -60/+102 |
| 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/+38 |
| 2013-07-20 | Implement KillHandle::kill() and friends (unkillable, atomically). Close #6377. | Ben Blum | -37/+227 |
| 2013-07-20 | Add tests for KillHandle | Ben Blum | -0/+140 |
| 2013-07-20 | Remove join_latch | Ben Blum | -654/+0 |
| 2013-07-20 | Add kill::Death for task death services and use it in Task. | Ben Blum | -22/+79 |
| 2013-07-20 | Add KillHandle and implement exit code propagation to replace join_latch | Ben Blum | -3/+134 |
| 2013-07-20 | Add UnsafeAtomicRcBox::try_unwrap() | Ben Blum | -1/+68 |
| 2013-07-20 | Reimplement ARC::unwrap() and friends. | Ben Blum | -19/+211 |
| 2013-07-20 | Add AtomicOption::fill() and AtomicOption::is_empty() | Ben Blum | -0/+38 |
| 2013-07-20 | Remove redundant Atomic{Ui,I}nt types from unstable::sync | Ben Blum | -68/+0 |
| 2013-07-20 | Add Option::take_map{,_default}() | Ben Blum | -0/+14 |
| 2013-07-20 | Add Either::expect_{left,right} | Ben Blum | -6/+26 |
| 2013-07-20 | auto merge of #7855 : brson/rust/rt-overcommit, r=pcwalton | bors | -5/+4 |
| 2013-07-19 | std: Remove old magic core mod | Brian Anderson | -42/+32 |
| 2013-07-19 | iterator: impl DoubleEndedIterator for adaptors | Daniel Micay | -0/+121 |
| 2013-07-19 | std::rt: Remove an obsolete FIXME. #7757 | Brian Anderson | -5/+0 |
| 2013-07-19 | std::rt: Use a constant 4 threads for multithreaded sched tests. #7772 | Brian Anderson | -5/+4 |
| 2013-07-19 | Missed the methods of UdpWatcher. | Eric Reed | -18/+16 |
| 2013-07-19 | Changed methods on UDP sockets and TCP/UDP watchers to &mut self to reflect t... | Eric Reed | -64/+65 |
| 2013-07-18 | auto merge of #7857 : blake2-ppc/rust/fix-test-warnings, r=alexcrichton | bors | -9/+8 |
| 2013-07-18 | auto merge of #7856 : brson/rust/no-thread-per-core, r=pcwalton | bors | -21/+1 |
| 2013-07-18 | rustpkg: Make rustpkg commands work without a package ID | Tim Chevalier | -1/+41 |
| 2013-07-18 | auto merge of #7854 : brson/rust/rt-test-threads, r=pcwalton | bors | -1/+1 |
| 2013-07-18 | librustc: Forbid `&` pointers (other than `&'static`) inside `@` boxes. | Patrick Walton | -5/+5 |
| 2013-07-18 | auto merge of #7833 : blake2-ppc/rust/hashmap-consume, r=alexcrichton | bors | -65/+21 |
| 2013-07-18 | auto merge of #7842 : thestinger/rust/closure, r=huonw | bors | -37/+24 |
| 2013-07-18 | hashmap: Remove .consume() has rename .consume_iter() to .consume() | blake2-ppc | -65/+21 |
| 2013-07-18 | repr: add a test case for @mut inside another type | Daniel Micay | -2/+2 |
| 2013-07-18 | fix repr of @mut vectors | Daniel Micay | -6/+5 |
| 2013-07-18 | Fix warnings in libstd and librusti tests | blake2-ppc | -9/+8 |
| 2013-07-17 | fix repr of unique vectors with stage0 libstd | Daniel Micay | -0/+9 |
| 2013-07-17 | libsyntax: Remove some multi-gigabyte clones that were preventing bootstrappi... | Patrick Walton | -0/+7 |
| 2013-07-17 | test: Fix tests. | Patrick Walton | -4/+4 |
| 2013-07-17 | librustc: Remove the `Copy` bound from the language. | Patrick Walton | -7/+1 |
| 2013-07-17 | test: Fix tests. | Patrick Walton | -24/+21 |
| 2013-07-17 | librustc: Remove all uses of the `Copy` bound. | Patrick Walton | -43/+34 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -206/+273 |
| 2013-07-17 | librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them. | Patrick Walton | -5/+5 |
| 2013-07-17 | rm unnecessary stage0 `zero_memory` fn | Daniel Micay | -28/+6 |
| 2013-07-17 | std::rt: Rename RUST_TEST_THREADS to RUST_RT_TEST_THREADS | Brian Anderson | -1/+1 |
| 2013-07-17 | rm unused visit_str method from TyVisitor | Daniel Micay | -1/+2 |