| Age | Commit message (Expand) | Author | Lines |
| 2013-06-23 | Split out starting a listener from accepting incoming connections. | Eric Reed | -51/+65 |
| 2013-08-27 | Add a variant of home_for_io that consumes the handle. Refactor out common pa... | Eric Reed | -48/+53 |
| 2013-08-29 | auto merge of #8819 : vadimcn/rust/unit-tests, r=brson | bors | -0/+9 |
| 2013-08-29 | Revert "auto merge of #8645 : alexcrichton/rust/issue-6436-run-non-blocking, ... | Brian Anderson | -742/+159 |
| 2013-08-28 | Turned off libstd unit tests that currently fail on Windows. | Vadim Chugunov | -0/+9 |
| 2013-08-27 | Fix merge fallout | Alex Crichton | -3/+3 |
| 2013-08-27 | Implement process bindings to libuv | Alex Crichton | -80/+701 |
| 2013-08-27 | Upgrade libuv to the current master + our patches | Alex Crichton | -82/+44 |
| 2013-08-27 | librustc: Fix merge fallout | Patrick Walton | -14/+14 |
| 2013-08-27 | librustc: Fix problem with cross-crate reexported static methods. | Patrick Walton | -5/+13 |
| 2013-08-27 | libstd: Fix merge fallout. | Patrick Walton | -4/+4 |
| 2013-08-27 | librustc: Ensure that type parameters are in the right positions in paths. | Patrick Walton | -32/+32 |
| 2013-08-20 | Added home_for_io_with_sched variant. Temporarily making IO unkillable. | Eric Reed | -124/+165 |
| 2013-08-22 | fix 32bit mac build error | Jeff Olson | -2/+2 |
| 2013-08-22 | make check appeasement | Jeff Olson | -1/+2 |
| 2013-08-22 | std: put FileMode/Access->whence-mask in uvio, open/unlink as fns in file:: | Jeff Olson | -10/+32 |
| 2013-08-22 | std: slight refactor on UvFilestream seek behavior, pre-seek-refactor | Jeff Olson | -29/+30 |
| 2013-08-22 | std: all of the calls in rt::uv::file take a &Loop | Jeff Olson | -44/+43 |
| 2013-08-22 | std: moved static file actions (open,unlink) to FsRequest | Jeff Olson | -63/+63 |
| 2013-08-22 | std: reform fn sigs of FileDescriptor methods (better result signalling) | Jeff Olson | -42/+46 |
| 2013-08-22 | std: rename tmp file paths to go into ./tmp folder in builddir | Jeff Olson | -3/+3 |
| 2013-08-22 | change FileDescriptor instance methods to use &mut self | Jeff Olson | -11/+11 |
| 2013-08-22 | std: naive stdio print test in uvio | Jeff Olson | -0/+20 |
| 2013-08-22 | std: UvFileStream implements HomingIO + .home_for_io() wrapper usage | Jeff Olson | -39/+60 |
| 2013-08-22 | std: writing to stdout only works when using -1 offset.. | Jeff Olson | -1/+1 |
| 2013-08-22 | std: rework file io.. support [p]read,[p]write, impl seek/tell + more tests | Jeff Olson | -32/+79 |
| 2013-08-22 | std: adding #[fixed_stack_segment] as needed in new uvll calls | Jeff Olson | -0/+16 |
| 2013-08-22 | std: rt::io::file::FileStream fleshed out.. needs more work.. see extended | Jeff Olson | -23/+30 |
| 2013-08-22 | std: CRUD file io bindings in uvio, fs_open()/unlink() in IoFactory + test | Jeff Olson | -0/+167 |
| 2013-08-22 | std: remove fcntl const bindings + making valgrind clean w/ no owned vecs | Jeff Olson | -142/+68 |
| 2013-08-22 | std: support async/threadpool & sync paths in uv_fs_* calls + add sync test | Jeff Olson | -35/+169 |
| 2013-08-22 | std: add read and unlink to low-level FileDescriptor + end-to-end CRUD test | Jeff Olson | -53/+119 |
| 2013-08-22 | std: working tests for low-level libuv open, write and close operations | Jeff Olson | -27/+126 |
| 2013-08-22 | std: bootstrapping libuv-based fileio in newrt... open & close | Jeff Olson | -14/+222 |
| 2013-08-21 | Adjust callbacks in the libraries for the new type of extern fns | Niko Matsakis | -21/+102 |
| 2013-08-20 | auto merge of #8656 : toddaaro/rust/idle-opt+cleaning, r=brson | bors | -1/+1 |
| 2013-08-20 | auto merge of #8631 : anasazi/rust/homing-io, r=brson | bors | -332/+671 |
| 2013-08-20 | Fixed a memory leak caused by the singleton idle callback failing to close co... | toddaaro | -1/+1 |
| 2013-08-20 | auto merge of #8566 : toddaaro/rust/idle-opt+cleaning, r=catamorphism,brson | bors | -7/+96 |
| 2013-08-19 | Make IO thread-safe. | Eric Reed | -651/+648 |
| 2013-08-19 | Homed UDP sockets | Eric Reed | -23/+212 |
| 2013-08-19 | Working homing UDP socket prototype. | Eric Reed | -1/+151 |
| 2013-08-19 | Instruct event loops to ignore SIGPIPE when constructed. | Eric Reed | -0/+1 |
| 2013-08-19 | Do not execute the callback before cleaning up resources. | Eric Reed | -2/+4 |
| 2013-08-19 | clean whitespace :/ | toddaaro | -3/+3 |
| 2013-08-19 | Add externfn macro and correctly label fixed_stack_segments | Niko Matsakis | -0/+168 |
| 2013-08-18 | auto merge of #8551 : huonw/rust/speling, r=alexcrichton | bors | -2/+2 |
| 2013-08-16 | Moved the logic for a pausible idle callback into a new type - PausibleIdleCa... | toddaaro | -18/+72 |
| 2013-08-16 | std::rt: Fix a race in UvRemoteCallback's dtor that misses callbacks | Brian Anderson | -7/+28 |
| 2013-08-16 | an attempt at a singleton pausible idle callback for each scheduler. suffers ... | toddaaro | -0/+14 |