| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-22 | libstd: Fix merge fallout. | Patrick Walton | -2207/+0 | |
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -5975/+0 | |
| This only changes the directory names; it does not change the "real" metadata names. | ||||
| 2013-05-22 | fix arm stack alignment | Jyun-Yan You | -1/+3 | |
| 2013-05-21 | auto merge of #6650 : crabtw/rust/mips-rt, r=sanxiyn | bors | -1/+3 | |
| Results of libcore and libstd tests ``` failures: rand::tests::test_rng_seeded_custom_seed2 time::tests::run_tests uv_ll::test::test_uv_ll_struct_size_addrinfo uv_ll::test::test_uv_ll_struct_size_uv_timer_t segfaults: stackwalk::test_simple stackwalk::test_simple_deep ``` | ||||
| 2013-05-21 | fix mips stack alignment | Jyun-Yan You | -1/+3 | |
| 2013-05-20 | core::rt: Convert unsafe_borrow_io to a Local impl | Brian Anderson | -18/+29 | |
| 2013-05-20 | core::rt: Implement Local for Task | Brian Anderson | -38/+43 | |
| 2013-05-20 | core::rt: Remove local_sched module | Brian Anderson | -53/+20 | |
| 2013-05-20 | core::rt: Convert users of local_sched to Local trait | Brian Anderson | -144/+141 | |
| 2013-05-20 | core::rt: Make local_sched a wrapper around Local | Brian Anderson | -8/+20 | |
| 2013-05-20 | core::rt: Move more TLS functionality into local_ptr | Brian Anderson | -58/+94 | |
| 2013-05-20 | core::rt: Move some TLS functions from local_sched to local_ptr | Brian Anderson | -59/+82 | |
| 2013-05-20 | rt: Rename rust_initialize_global_state to rust_initialize_rt_tls_key | Brian Anderson | -5/+12 | |
| 2013-05-20 | core::rt: Store Task as a ~ pointer | Brian Anderson | -11/+11 | |
| 2013-05-20 | core::rt: Add Local trait | Brian Anderson | -0/+21 | |
| 2013-05-20 | core:rt:: Rename LocalServices to Task | Brian Anderson | -63/+52 | |
| 2013-05-20 | core::rt: Queues MessageQueue and WorkQueue are cloneable | Brian Anderson | -1/+19 | |
| 2013-05-20 | core::rt: Add MessageQueue type | Brian Anderson | -1/+48 | |
| This is the queue used to send messages to Schedulers | ||||
| 2013-05-20 | core::rt: Put a lock on the work queue | Brian Anderson | -13/+22 | |
| 2013-05-20 | core::rt: Rename WorkQueue methods, remove extra push method | Brian Anderson | -12/+8 | |
| 2013-05-20 | auto merge of #6635 : brson/rust/snapshot, r=brson | bors | -15/+0 | |
| 2013-05-20 | auto merge of #6632 : steveklabnik/rust/remove_more_warnings, r=thestinger | bors | -2/+2 | |
| With this, the build is almost 100% warning free. One more can be fixed after the next snapshot, and there's one other that I filed an issue about already. | ||||
| 2013-05-19 | Register snapshots | Brian Anderson | -15/+0 | |
| 2013-05-19 | Fix many warnings. | Steve Klabnik | -2/+2 | |
| 2013-05-19 | Remove more warnings. | Steve Klabnik | -7/+1 | |
| Mostly of the 'unused imports' kind. | ||||
| 2013-05-19 | Use assert_eq! rather than assert! where possible | Corey Richardson | -49/+49 | |
| 2013-05-17 | Whitespace | Brian Anderson | -2/+2 | |
| 2013-05-17 | core: Wire up `stream` to newsched | Brian Anderson | -112/+138 | |
| 2013-05-17 | core: Wire up oneshot pipes to newsched | Brian Anderson | -0/+22 | |
| 2013-05-17 | core::rt: implement `oneshot` and `stream`. | Brian Anderson | -1/+645 | |
| 2013-05-17 | Merge remote-tracking branch 'brson/io' into incoming | Brian Anderson | -1064/+2843 | |
| 2013-05-16 | fix warnings | Corey Richardson | -4/+2 | |
| 2013-05-15 | core::rt: Unignore a fixed TCP test | Brian Anderson | -1/+1 | |
| 2013-05-15 | Merge remote-tracking branch 'brson/io' into incoming | Brian Anderson | -1064/+2843 | |
| 2013-05-15 | core::rt: Fix TCP test on mac | Brian Anderson | -3/+8 | |
| 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 | -18/+12 | |
| 2013-05-15 | core::rt: Rename Task to Coroutine | Brian Anderson | -57/+57 | |
| 2013-05-15 | core::rt: Rename Sched.task_queue to work_queue | Brian Anderson | -5/+5 | |
| 2013-05-15 | rt: Rename sched_key to rt_key | Brian Anderson | -2/+2 | |
| It is more general-purpose than holding scheduler pointers | ||||
| 2013-05-15 | core::rt: Fix scheduling logic for enqueued tasks | Brian Anderson | -124/+186 | |
| 2013-05-15 | core::rt: Add uv timer bindings | Brian Anderson | -8/+202 | |
| 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: Turn task::unkillable, etc. into no-ops in newsched. #6377 | Brian Anderson | -1/+0 | |
| Not necessary just yet but they make ARC not work. | ||||
| 2013-05-15 | core::rt: Don't abort when reporting an unknown uv error | Brian Anderson | -2/+3 | |
| 2013-05-15 | core::rt: Error handling for TcpStream.read | Brian Anderson | -9/+91 | |
| 2013-05-15 | core::rt: Initialize logging | Brian Anderson | -3/+40 | |
