| Age | Commit message (Expand) | Author | Lines |
| 2012-05-18 | add a new debugging aid--tracing | Niko Matsakis | -0/+23 |
| 2012-05-15 | rt: Make task killing synchronization possibly more correct | Brian Anderson | -4/+12 |
| 2012-05-15 | core: Add task::unkillable | Brian Anderson | -1/+30 |
| 2012-05-15 | get preservation of boxes working, at least in simple cases | Niko Matsakis | -1/+0 |
| 2012-05-15 | make poison-on-free work, disable copying if borrowck is enabled | Niko Matsakis | -5/+14 |
| 2012-05-07 | rt: Start tasks, ports and scheds at 1, assert when we see 0. Closes #2321 | Brian Anderson | -3/+5 |
| 2012-05-03 | core: Add comm::recv_chan to receive from a channel | Brian Anderson | -0/+21 |
| 2012-05-03 | More shape fixes for evecs. | Graydon Hoare | -27/+30 |
| 2012-05-03 | Implement better shape code for evec, estr. | Graydon Hoare | -10/+249 |
| 2012-05-02 | rt: Fix some record alignment issues on windows | Brian Anderson | -0/+2 |
| 2012-05-02 | Revert "rt: Fix some record alignment issues on windows" | Brian Anderson | -2/+0 |
| 2012-05-02 | rt: Fix some record alignment issues on windows | Brian Anderson | -0/+2 |
| 2012-05-02 | Remove unused sp_size arg passed through walk_vec{1,2} in shape code. | Graydon Hoare | -10/+10 |
| 2012-05-02 | Make rust_shape.h agree with shape.rs about meaning of shape code #31. | Graydon Hoare | -1/+1 |
| 2012-04-30 | core: Serialize all access to the environment using a weak global task | Brian Anderson | -4/+14 |
| 2012-04-27 | rt/std: whitespace cleanup + work on hl/global_loop docs | Jeff Olson | -1/+1 |
| 2012-04-27 | rt: remove unneccesary c++ functions and rust_kernel data, re: global loop | Jeff Olson | -18/+0 |
| 2012-04-27 | std: add ll::loop_refcount binding for uv_loop_refcount | Jeff Olson | -0/+6 |
| 2012-04-26 | rt: Fix shape alignment of 64-bit ints on x86. Issue #2303 | Brian Anderson | -0/+12 |
| 2012-04-20 | whitespace cleanup | Jeff Olson | -1/+1 |
| 2012-04-20 | std: get_monitor_task_gl() is global_loop::get() default | Jeff Olson | -0/+6 |
| 2012-04-20 | adding missing binding to rustrt.def.in | Jeff Olson | -0/+1 |
| 2012-04-20 | replace impl of globa_async_handle with one using atomic compare-and-swap | Jeff Olson | -15/+7 |
| 2012-04-20 | remove rustrt.def.in entry for no-longer-existent c++ function | Jeff Olson | -1/+0 |
| 2012-04-20 | don't use ::malloc for initializing the global_async_handle in rust_kernel | Jeff Olson | -6/+4 |
| 2012-04-20 | clean and trying the global loop test as two separate loop lifetimes.. | Jeff Olson | -2/+2 |
| 2012-04-20 | rt: whitespace cleanup for existing libuv integration | Jeff Olson | -16/+16 |
| 2012-04-20 | bindings to get/set data field on uv_loop_t* and debug log cleanup | Jeff Olson | -11/+25 |
| 2012-04-20 | add needed fields for global libuv loop + bindings to manage from rust | Jeff Olson | -0/+41 |
| 2012-04-20 | adding low-level uv_timer_* stuff to libuv bindings | Jeff Olson | -4/+21 |
| 2012-04-20 | making brson's req. cleanups in #2134 plus change printf to LOG in c++ | Jeff Olson | -12/+24 |
| 2012-04-20 | rt: Delete some incorrect comments | Brian Anderson | -3/+0 |
| 2012-04-20 | rt: Take the weak_task_lock in end_weak_tasks | Brian Anderson | -1/+1 |
| 2012-04-19 | Fix for #1989, #1469: when marking in CC, walk fn@ box like other boxes | Niko Matsakis | -1/+2 |
| 2012-04-19 | add a new runtime log (::rt::box) and make boxed_region use it | Niko Matsakis | -10/+11 |
| 2012-04-18 | rt: Don't log in the stack switching failure path | Brian Anderson | -5/+4 |
| 2012-04-16 | Get explicit unique estrs working. | Graydon Hoare | -5/+50 |
| 2012-04-09 | rt: Fix typo | Brian Anderson | -1/+1 |
| 2012-04-09 | rt: Allow 2x normal stack during unwinding. Closes #2173 | Brian Anderson | -12/+12 |
| 2012-04-09 | rt: Don't limit the amount of stack available during unwinding. Closes #2144 | Brian Anderson | -1/+11 |
| 2012-04-07 | core: Add priv::weaken_task | Brian Anderson | -16/+113 |
| 2012-04-06 | core: Add priv::chan_from_global_ptr | Brian Anderson | -0/+7 |
| 2012-04-06 | removing some unneeded native fn mappingsin uv.rs and misc clean | Jeff Olson | -14/+5 |
| 2012-04-06 | experimenting with a different uv_buf_init impl to placate 32bit linux | Jeff Olson | -2/+17 |
| 2012-04-06 | removed this binding a few commits back. missed it in rustrt.def.in | Jeff Olson | -1/+0 |
| 2012-04-06 | whitespace cleanup after rebase | Jeff Olson | -134/+127 |
| 2012-04-06 | add libuv error msg helpers.. flushing out windows tcp issue. | Jeff Olson | -0/+14 |
| 2012-04-06 | add low-level uv_async bindings for use in tcp test | Jeff Olson | -8/+21 |
| 2012-04-06 | hello world test for a tcp server in libuv | Jeff Olson | -27/+54 |
| 2012-04-06 | fixing libuv stuff in win32 (see #2064) .. pass sockaddr_in by-ref, for now | Jeff Olson | -3/+5 |