| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-08-15 | Fixed memory accounting and task stack creation bugs. | Eric Holk | -1/+1 | |
| 2011-08-15 | Working on more spawn test cases. | Eric Holk | -0/+6 | |
| 2011-08-15 | Added a library version of spawn. Before long, we can remove the old version. | Eric Holk | -0/+5 | |
| 2011-08-15 | Port ID-based channels. | Eric Holk | -0/+11 | |
| 2011-08-12 | Don't rely on binop autoderef in the compiler. | Michael Sullivan | -1/+1 | |
| 2011-08-12 | Remove vecs from std::sha1 | Brian Anderson | -2/+2 | |
| 2011-08-12 | Remove last uses of vec::len | Brian Anderson | -26/+36 | |
| 2011-08-12 | Remove vecs from std::getopts | Brian Anderson | -71/+71 | |
| 2011-08-12 | Remove more vectors from std | Brian Anderson | -6/+6 | |
| 2011-08-12 | Remove vecs from std::sort | Brian Anderson | -62/+33 | |
| 2011-08-12 | Convert std::run to ivecs | Brian Anderson | -4/+4 | |
| 2011-08-12 | Remove vecs from std::bitv | Brian Anderson | -82/+82 | |
| 2011-08-12 | Move the ivec::reverse tests to stdtest | Brian Anderson | -0/+20 | |
| 2011-08-12 | Remove stdtest::vec | Brian Anderson | -95/+0 | |
| 2011-08-12 | Add some of stdtest::vec into stdtest::ivec | Brian Anderson | -0/+47 | |
| Add missing functions to std::ivec as needed | ||||
| 2011-08-12 | Rename std::ioivec to std::io | Brian Anderson | -9/+9 | |
| 2011-08-12 | Convert all uses of std::io to std::ioivec | Brian Anderson | -9/+10 | |
| 2011-08-12 | Rename str::connect_ivec to str::connect | Brian Anderson | -1/+1 | |
| 2011-08-12 | Convert uses of str::connect to str::connect_ivec | Brian Anderson | -5/+5 | |
| 2011-08-12 | Convert str::concat to ivecs | Brian Anderson | -4/+4 | |
| 2011-08-12 | Rename str::split_ivec to str::split | Brian Anderson | -1/+1 | |
| 2011-08-12 | Convert uses of str::split to split_ivec | Brian Anderson | -1/+1 | |
| 2011-08-12 | Rename std::str::unsafe_from_bytes_ivec to unsafe_from_bytes | Brian Anderson | -2/+2 | |
| 2011-08-12 | Convert all uses of unsafe_from_bytes to unsafe_from_bytes_ivec | Brian Anderson | -12/+6 | |
| 2011-08-12 | Remove str::from_bytes | Brian Anderson | -1/+1 | |
| This is exactly the same as str::unsafe_from_bytes | ||||
| 2011-08-12 | Remove vec version of str::bytes, rename bytes_ivec to str::bytes | Brian Anderson | -1/+2 | |
| 2011-08-12 | Change a bunch of places in the stdlib to use blocks. | Michael Sullivan | -3/+2 | |
| 2011-08-11 | Un-ignore stdtest::task::test_sleep | Brian Anderson | -1/+0 | |
| Works for me. | ||||
| 2011-08-09 | Port the fuzzer and tests to ivec type [T] syntax. | Erick Tryzelaar | -8/+8 | |
| 2011-08-09 | Change the ivec type syntax to [T]. | Erick Tryzelaar | -4/+4 | |
| This preserves the old syntax for now. | ||||
| 2011-08-08 | Converted the rest of the task-comm-* tests over. Also fixed some | Eric Holk | -1/+1 | |
| channel lifecycle bugs. | ||||
| 2011-08-05 | Rewrote receive to return a value. This lets us initialize variables by ↵ | Eric Holk | -4/+3 | |
| receiving them. | ||||
| 2011-08-03 | Remove an obsolete FIXME in stdtest/deque.rs. Closes #140. | Michael Sullivan | -6/+2 | |
| 2011-08-03 | Whitespace cleanup | Brian Anderson | -4/+4 | |
| 2011-08-03 | Add some hacks to get stdin piping working more correctly in windows | Brian Anderson | -1/+50 | |
| The way pipes work in windows is not the same as unix, though I'm not entirely clear on the differences. This patch changes the windows pipe method to return non-inheritable fds, and the windows rust_run_program method to duplicate them before spawning the new process. This allows make-check-pretty to work on windows. | ||||
| 2011-08-01 | Add std::str::is_whitespace | Brian Anderson | -0/+9 | |
| 2011-08-01 | Add std::str::trim/trim_left/trim_right | Brian Anderson | -0/+30 | |
| 2011-08-01 | Add std::char_slice | Brian Anderson | -0/+7 | |
| 2011-08-01 | Added send and receive to comm library. | Eric Holk | -0/+12 | |
| 2011-08-01 | Objectified library chans and ports. | Eric Holk | -1/+1 | |
| 2011-08-01 | Started working on a library-based comm system. Creating and deleting ports ↵ | Eric Holk | -0/+9 | |
| work. | ||||
| 2011-07-29 | Enable kind checking on typarams, fix kind constraints in library and comp. | Graydon Hoare | -3/+3 | |
| 2011-07-27 | Remove task::worker | Brian Anderson | -23/+0 | |
| It was too unsafe to live. It already apeared to be causing problems with eholk's incoming task changes, so I'm killing it now before it can spread. | ||||
| 2011-07-27 | Fix damage done by the pretty-printer | Marijn Haverbeke | -4/+4 | |
| 2011-07-27 | Reformat for new syntax | Marijn Haverbeke | -876/+819 | |
| 2011-07-26 | Run compile tests in a way that's safe in a multithreaded environment | Brian Anderson | -2/+2 | |
| In theory. There's still something leaking but I hope it's no longer due to the test runner doing unsafe things. This is a pretty nasty patch, working around limitations in the type and task systems, and it makes the std::test API a little uglier. | ||||
| 2011-07-26 | Make the setenv tests threadsafe(ish) | Brian Anderson | -7/+9 | |
| 2011-07-26 | Remove uses of tuples from the test suite | Marijn Haverbeke | -19/+19 | |
| 2011-07-25 | Run test tasks in parallel according to RUST_THREADS. Issue #734 | Brian Anderson | -1/+1 | |
| 2011-07-24 | Add task::send and task::recv | Brian Anderson | -0/+8 | |
