| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-10-26 | Add more std documentation | Brian Anderson | -80/+858 | |
| 2011-10-26 | Add more std documentation | Brian Anderson | -20/+211 | |
| 2011-10-25 | Begin documenting std and add doc generation using naturaldocs | Brian Anderson | -109/+1114 | |
| Naturaldocs isn't really that great but it seems easier to get something working than with doxygen, for which we would need to convert rust code to something C++ish. We probably want to just write a rustdoc utility at some point. | ||||
| 2011-10-25 | Properly take mutable object fields into account during alias analysis | Marijn Haverbeke | -2/+2 | |
| Closes #1055 | ||||
| 2011-10-25 | Update our code to new type parameter kind syntax | Marijn Haverbeke | -144/+141 | |
| Closes #1067 | ||||
| 2011-10-24 | remove (unused) fn rust_list_files from win32_fs; that is | Niko Matsakis | -1/+0 | |
| defined in fs.rs | ||||
| 2011-10-24 | remove unused task ptr arg | Niko Matsakis | -7/+5 | |
| 2011-10-24 | move remaining task natives to cdecl ABI (run on rust stack) | Niko Matsakis | -10/+12 | |
| 2011-10-24 | isolate those funcs in task that can run on the c stack | Niko Matsakis | -19/+20 | |
| 2011-10-24 | move sys fns into c-stack-cdecl and get_type_desc() into rusti | Niko Matsakis | -8/+10 | |
| there is one test failure, stdtest/sys.rs, which inexplicably (thus far) fails to compile because it invokes sys::rustrt::last_os_error() instead of invoking sys::last_os_error(). If stdtest/sys.rs is updated to invoke the wrapper, it passes. Still tracing the source of this error. | ||||
| 2011-10-24 | migrate leak | Niko Matsakis | -1/+1 | |
| 2011-10-24 | migrate rust_run_program | Niko Matsakis | -1/+1 | |
| 2011-10-24 | migrate debugging funcs | Niko Matsakis | -15/+25 | |
| 2011-10-24 | migrate sched_threads call | Niko Matsakis | -1/+1 | |
| 2011-10-24 | convert str methods to c-stack-cdecl | Niko Matsakis | -1/+1 | |
| 2011-10-24 | make time module use c-stack-cdecl | Niko Matsakis | -1/+1 | |
| 2011-10-24 | move rand functions into c-stack-cdecl mode | Niko Matsakis | -1/+1 | |
| 2011-10-24 | remove unnecessary && from various file routines | Niko Matsakis | -3/+3 | |
| 2011-10-24 | move more native "rust" to native "c-stack-cdecl" | Niko Matsakis | -3/+3 | |
| 2011-10-24 | move io.rs natives from "rust" to "c-stack-stdlib" | Niko Matsakis | -1/+1 | |
| 2011-10-24 | move fs routines to c-stack-stdlib | Niko Matsakis | -3/+3 | |
| 2011-10-24 | rip out unused task pointers | Niko Matsakis | -10/+10 | |
| 2011-10-24 | move comm functions out of rust abi | Niko Matsakis | -12/+18 | |
| 2011-10-24 | purge log_err | Niko Matsakis | -1/+0 | |
| 2011-10-24 | update vec libs to use c-stack-cdecl calling convention | Niko Matsakis | -6/+23 | |
| 2011-10-21 | Clean up character pattern in float.rs | Marijn Haverbeke | -1/+1 | |
| This is actually a test to see if I fixed the bot. | ||||
| 2011-10-21 | Remove last uses of iterators from stdlib | Marijn Haverbeke | -23/+21 | |
| Issue #1056 | ||||
| 2011-10-21 | Move hash table iteration over to block-taking functions | Marijn Haverbeke | -10/+15 | |
| Issue #1056 | ||||
| 2011-10-20 | Remove temporary fn# syntax | Brian Anderson | -12/+12 | |
| 2011-10-20 | Make fn denote a bare function. Convert fn to fn@ as needed | Brian Anderson | -12/+12 | |
| 2011-10-20 | Drop the 2 from the spawn*2 functions | Brian Anderson | -13/+13 | |
| Issue #1022 | ||||
| 2011-10-20 | Rename std::task::spawn_inner to unsafe_spawn_inner | Brian Anderson | -15/+5 | |
| Delete the rest of the old, unused spawn functions. Issue #1022 | ||||
| 2011-10-20 | Stop exporting unsafe spawn functions | Brian Anderson | -3/+0 | |
| Issue #1022 | ||||
| 2011-10-20 | Convert the test runners to typesafe spawn | Brian Anderson | -58/+68 | |
| Issue #1022 | ||||
| 2011-10-20 | Convert std::aio to new spawn functions | Brian Anderson | -11/+14 | |
| Issue #1022 | ||||
| 2011-10-20 | Add safe versions of spawn using bare functions | Brian Anderson | -0/+44 | |
| Currently they just wrap the unsafe versions. Will need to be rewritten eventually. Issue #1022 | ||||
| 2011-10-20 | Do not pass taskpointers to "rust" native functions | Marijn Haverbeke | -4/+3 | |
| Issue #466 | ||||
| 2011-10-18 | Add a math module to the standard lib | Marijn Haverbeke | -0/+23 | |
| I need some rudimentary stdlib stuff for the tutorial. Closes #1042 | ||||
| 2011-10-18 | Add a print and println to std::io | Marijn Haverbeke | -0/+3 | |
| 2011-10-17 | Don't unify from mutable? to immutable | Brian Anderson | -2/+2 | |
| Immutable is supposed to be a subtype of mutable-huh. | ||||
| 2011-10-17 | [Lib] int.rs, uint.rs: added max_value, min_value | David Rajchenbach-Teller | -0/+21 | |
| 2011-10-17 | [Lib] uint.rs: +min_value | David Rajchenbach-Teller | -1/+1 | |
| 2011-10-17 | [Lib] rand.rs: type rng now defines next_float | David Rajchenbach-Teller | -0/+8 | |
| 2011-10-17 | [Lib] u32.rs: created | David Rajchenbach-Teller | -0/+14 | |
| 2011-10-17 | [Lib] u8.rs, u64.rs: +min_value, max_value | David Rajchenbach-Teller | -1/+5 | |
| 2011-10-12 | Cleanse usage of some unsafe functions on win32 | Brian Anderson | -1/+5 | |
| 2011-10-12 | reimplement some of the unsafe stuff which got lost | Niko Matsakis | -38/+28 | |
| - blocks inherit unsafety - remove the --check-unsafe flag - add unsafe annotations where needed to get things to compile | ||||
| 2011-10-12 | Add unsafe blocks, unsafe functions, and two rudimentary tests | Niko Matsakis | -1/+3 | |
| related to them | ||||
| 2011-10-12 | Extend the unchecked block stuff to allow unsafe blocks as well. | Niko Matsakis | -8/+41 | |
| 2011-10-12 | [Renaming] str_to_float is now float::from_str, float_to_str is now ↵ | David Rajchenbach-Teller | -2/+2 | |
| float::to_str | ||||
