| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-22 | libstd: Fix merge fallout. | Patrick Walton | -50/+0 | |
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -2700/+0 | |
| This only changes the directory names; it does not change the "real" metadata names. | ||||
| 2013-05-20 | core::rt: Convert unsafe_borrow_io to a Local impl | Brian Anderson | -4/+7 | |
| 2013-05-20 | core::rt: Remove local_sched module | Brian Anderson | -1/+1 | |
| 2013-05-19 | Register snapshots | Brian Anderson | -8/+0 | |
| 2013-05-19 | Use assert_eq! rather than assert! where possible | Corey Richardson | -25/+25 | |
| 2013-05-17 | Whitespace | Brian Anderson | -2/+2 | |
| 2013-05-15 | core::rt: Unignore a fixed TCP test | Brian Anderson | -1/+1 | |
| 2013-05-15 | core::rt: Fix TCP test on mac | Brian Anderson | -2/+4 | |
| 2013-05-15 | core::rt: Copy many of the old io extensions to the new io | Brian Anderson | -6/+334 | |
| Some resolve problem is keeping the tests from working | ||||
| 2013-05-15 | core::rt: More work on Reader extensions and error handling | Brian Anderson | -65/+127 | |
| 2013-05-15 | core::rt: Make push_bytes raise read_error on EOF | Brian Anderson | -19/+45 | |
| 2013-05-15 | core::rt: Warnings | Brian Anderson | -3/+5 | |
| 2013-05-15 | core::rt: `read` raises `read_error` | Brian Anderson | -241/+29 | |
| 2013-05-15 | core::rt: Begin implementing Reader extension methods | Brian Anderson | -5/+325 | |
| 2013-05-15 | core::rt: Error handling for TcpStream.read | Brian Anderson | -7/+83 | |
| 2013-05-14 | core::rt: Ignore tcp test multiple_connect_interleaved_lazy_schedule | Brian Anderson | -1/+1 | |
| Hangs on mac. | ||||
| 2013-05-14 | core::rt: Register stacks with valgrind. #6428 | Brian Anderson | -1/+1 | |
| 2013-05-14 | core::rt: Make TCP servers work | Brian Anderson | -3/+83 | |
| 2013-05-14 | Tidy | Brian Anderson | -3/+3 | |
| 2013-05-14 | core::rt: Just a small fix to TcpStream | Brian Anderson | -0/+26 | |
| 2013-05-14 | core::rt: Fix the finalizer on UvTcpStream and UvTcpListener | Brian Anderson | -13/+0 | |
| Eliminates a lot of calls to `close` | ||||
| 2013-05-14 | core::rt: Use unsafe pointers instead of transmuted regions | Brian Anderson | -2/+2 | |
| 2013-05-13 | core::rt: Clean up the interface to rtio | Brian Anderson | -11/+13 | |
| Make names that better match rt::io. Return error types. | ||||
| 2013-05-13 | core::rt: Begin implementing TcpStream | Brian Anderson | -27/+148 | |
| This ended up touching a lot of code related to error handling. | ||||
| 2013-05-13 | core::rt: Remove Close trait | Brian Anderson | -43/+3 | |
| We will just use RAII for now. | ||||
| 2013-05-09 | Fix typos | Sean Moon | -1/+1 | |
| 2013-05-06 | Step one for 'proper' pub condition: support pub keyword in form. | Felix S. Klock II | -1/+2 | |
| 2013-05-04 | Register snapshots | Brian Anderson | -3/+0 | |
| 2013-05-03 | add gitattributes and fix whitespace issues | Daniel Micay | -4/+0 | |
| 2013-04-24 | core: Warning police | Brian Anderson | -6/+1 | |
| 2013-04-23 | core::rt: Add more I/O docs | Brian Anderson | -22/+151 | |
| 2013-04-23 | Merge remote-tracking branch 'brson/io' | Brian Anderson | -67/+328 | |
| This also reverts some changes to TLS that were leaking memory. Conflicts: src/libcore/rt/uv/net.rs src/libcore/task/local_data_priv.rs src/libcore/unstable/lang.rs | ||||
| 2013-04-23 | core, rustc: Warning police | Tim Chevalier | -2/+2 | |
| 2013-04-22 | core::rt: Add unwinding to newsched tasks | Brian Anderson | -0/+1 | |
| 2013-04-22 | core::rt: Add implementations of Reader, Writer, and Listener for Option | Brian Anderson | -3/+174 | |
| These will make it easier to write I/O code without worrying about errors | ||||
| 2013-04-22 | core::rt: Move the definition of Listener to rt::io | Brian Anderson | -34/+21 | |
| 2013-04-22 | core::rt: Make I/O constructors return Option instead of Result | Brian Anderson | -7/+7 | |
| For consistency, for all I/O calls, inspecting the error can be done with the io_error condition. | ||||
| 2013-04-20 | core::rt:: Implement Reader/Writer for MemReader/MemWriter | Brian Anderson | -7/+70 | |
| 2013-04-20 | core::rt: Listener constructors are called and return a | Brian Anderson | -3/+30 | |
| 2013-04-19 | core::rt: Just some poking at the I/O docs | Brian Anderson | -4/+21 | |
| 2013-04-19 | wip | Brian Anderson | -12/+7 | |
| 2013-04-19 | core::rt: Rename Closeable to Close, Seekable to Seek, blocking to native | Brian Anderson | -21/+21 | |
| 2013-04-19 | Tidy | Brian Anderson | -21/+21 | |
| 2013-04-19 | core::rt: Declare large parts of the I/O API | Brian Anderson | -24/+1535 | |
| 2013-03-28 | Removing unused imports | Alex Crichton | -2/+0 | |
| 2013-03-26 | Remove unused imports throughout | Alex Crichton | -3/+0 | |
| 2013-03-25 | Merge remote-tracking branch 'brson/rt' | Brian Anderson | -0/+90 | |
| Conflicts: src/libcore/rt/context.rs src/libcore/rt/sched.rs src/libcore/rt/thread.rs src/libcore/rt/uv.rs | ||||
| 2013-03-18 | core: Refactor uv bindings | Brian Anderson | -3/+3 | |
| I can already see these are going to get massive. Putting them into multiple files. | ||||
| 2013-03-18 | core: Add rt::io and start sketching the API | Brian Anderson | -0/+90 | |
