| Age | Commit message (Expand) | Author | Lines |
| 2013-08-03 | register snapshots | Daniel Micay | -32/+1 |
| 2013-08-03 | std::rt: Run local storage cleanup and the box annihilator inside the try/catch | Brian Anderson | -27/+22 |
| 2013-08-03 | auto merge of #8246 : stepancheg/rust/contains-key, r=thestinger | bors | -17/+5 |
| 2013-08-03 | auto merge of #8219 : sstewartgallus/rust/fix_dynamic_lib, r=graydon | bors | -36/+70 |
| 2013-08-03 | auto merge of #8213 : kballard/rust/fd-limit, r=brson | bors | -4/+83 |
| 2013-08-03 | std: expose the keyed HashMap constructor, for runtime-less use. | Huon Wilson | -28/+26 |
| 2013-08-03 | auto merge of #8204 : kballard/rust/str-into-owned, r=graydon | bors | -0/+12 |
| 2013-08-03 | std: add benchmark for vec.mut_iter. | Huon Wilson | -0/+13 |
| 2013-08-03 | std: use ptr.offset where possible in the vec iterator. | Huon Wilson | -8/+38 |
| 2013-08-03 | option: mutate() and mutate_default() should return bool | Kevin Ballard | -5/+24 |
| 2013-08-03 | fixed the buffer to make it a more reasonable size | toddaaro | -1/+1 |
| 2013-08-03 | modified logging function to truncate output and adjusted error output format... | toddaaro | -0/+10 |
| 2013-08-03 | make `for` parse as `foreach` does | Daniel Micay | -1/+3 |
| 2013-08-03 | replace all remaining `for` with `foreach` or `do` | Daniel Micay | -70/+94 |
| 2013-08-02 | librustc: Disallow "unsafe" for external functions | Patrick Walton | -623/+539 |
| 2013-08-02 | Bump fd limit on macos when running rt tests | Kevin Ballard | -0/+78 |
| 2013-08-02 | Revert "std::rt: Use a constant 4 threads for multithreaded sched tests" | Kevin Ballard | -4/+5 |
| 2013-08-03 | Add default implementation of Map::contains_key function | Stepan Koltsov | -17/+5 |
| 2013-08-03 | Rename IpAddr -> SocketAddr, extract IpAddr from SocketAddr | Stepan Koltsov | -148/+142 |
| 2013-08-02 | Add an assert_may_sleep() check on every context switch. | Ben Blum | -0/+4 |
| 2013-08-02 | Don't fail from kill signals if already unwinding. | Ben Blum | -3/+3 |
| 2013-08-02 | (cleanup) Use more do...finally in extra::sync. | Ben Blum | -0/+6 |
| 2013-08-02 | Fix embarrassing bug where 'unkillable' would unwind improperly when it recei... | Ben Blum | -2/+44 |
| 2013-08-02 | Fix nasty double-free bug where a newrt chan could get killed after reschedul... | Ben Blum | -2/+7 |
| 2013-08-02 | Add SendDeferred trait and use it to fix #8214. | Ben Blum | -24/+157 |
| 2013-08-02 | std: Speed up str::is_utf8 | blake2-ppc | -35/+67 |
| 2013-08-02 | auto merge of #8221 : brson/rust/single-threaded, r=graydon | bors | -16/+107 |
| 2013-08-02 | auto merge of #8195 : bblum/rust/task-cleanup, r=brson | bors | -29/+94 |
| 2013-08-02 | auto merge of #8193 : cmr/rust/linux-errno, r=graydon | bors | -0/+107 |
| 2013-08-02 | auto merge of #8175 : brson/rust/nodbg, r=graydon | bors | -2/+0 |
| 2013-08-02 | std: Implement SingleThreaded spawn mode for newsched | Brian Anderson | -16/+107 |
| 2013-08-01 | Fix calling destructor on uninitialized dynamic library crash. | Steven Stewart-Gallus | -36/+70 |
| 2013-08-02 | replace `range` with an external iterator | Daniel Micay | -90/+84 |
| 2013-08-01 | str: Add method .into_owned(self) -> ~str to Str | Kevin Ballard | -0/+12 |
| 2013-08-01 | modified local to include an implementation for try_unsafe_borrow::<Task> so ... | toddaaro | -10/+17 |
| 2013-08-01 | fixed incorrect handling of returned scheduler option and restructed schedule... | toddaaro | -75/+64 |
| 2013-08-01 | minor tweaks - unboxed the coroutine so that it is no longer a ~ pointer insi... | toddaaro | -32/+72 |
| 2013-08-01 | Fixed a race where a scheduler configured to only run tasks pinned to it woul... | toddaaro | -8/+35 |
| 2013-08-01 | Have linked failure tests run on the new scheduler instead of requiring RUST_... | Ben Blum | -79/+152 |
| 2013-08-01 | A major refactoring that changes the way the runtime uses TLS. In the | toddaaro | -1022/+887 |
| 2013-08-01 | Temporary workaround to prevent taskgroup cleanup code from failing without a... | Ben Blum | -3/+13 |
| 2013-08-01 | Make a forgotten assert in comm be cfg(test)-dependent | Ben Blum | -3/+1 |
| 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 | -22/+23 |
| 2013-08-01 | auto merge of #8190 : thestinger/rust/for, r=thestinger | bors | -255/+243 |
| 2013-08-01 | Add a boatload of Linux x86/x86-64/arm errnos | Corey Richardson | -0/+107 |
| 2013-08-01 | migrate to foreach | Daniel Micay | -2/+2 |
| 2013-08-01 | std: Change `Times` trait to use `do` instead of `for` | blake2-ppc | -54/+53 |
| 2013-08-01 | std: Replace `for` with `do { .. }` expr in std::gc | blake2-ppc | -62/+52 |
| 2013-08-01 | std: Remove the internal iterator methods from trait Set | blake2-ppc | -33/+1 |