| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -16/+16 | |
| 2013-03-28 | Removing unused imports | Alex Crichton | -1/+5 | |
| 2013-03-25 | Merge remote-tracking branch 'brson/rt' | Brian Anderson | -0/+1919 | |
| 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: Simplify uvll bindings and strip out currently-unused bits | Brian Anderson | -18/+0 | |
| No more mapping uv structs to Rust structs | ||||
| 2013-03-18 | Give core::rt and std::net their own uvll bindings | Brian Anderson | -0/+1939 | |
| I intend to do some big refactoring and don't want to deal w/ std just now | ||||
| 2013-03-11 | core: Add rt mod and add the new scheduler code | Brian Anderson | -1923/+0 | |
| 2013-03-07 | test: Fix tests. | Patrick Walton | -2/+4 | |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -16/+16 | |
| 2013-03-07 | librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. ↵ | Patrick Walton | -3/+6 | |
| rs=deexterning | ||||
| 2013-03-07 | libstd: Remove `extern mod { ... }` from libstd. rs=deexterning | Patrick Walton | -138/+146 | |
| 2013-03-03 | rustc: MIPS32 support | Jyun-Yan You | -1/+13 | |
| 2013-02-28 | Fix implicit leaks of imports throughout libraries | Alex Crichton | -1/+2 | |
| Also touch up use of 'pub' and move some tests around so the tested functions don't have to be 'pub' | ||||
| 2013-02-21 | core: Extract comm from pipes. #4742 | Brian Anderson | -1/+1 | |
| 2013-02-15 | libstd: Get rid of `move`. | Luqman Aden | -1/+0 | |
| 2013-02-14 | fix bug in uv_ll tests uncovered by not zeroing | Daniel Micay | -3/+3 | |
| 2013-02-11 | std: Fix uv_tcp_t size on i686-apple-darwin | Brian Anderson | -19/+66 | |
| 2013-02-10 | std: fix libuv structs on macos | Jeff Olson | -2/+35 | |
| 2013-02-10 | rt/std: update of libuv API glue for libuv submodule update | Jeff Olson | -120/+95 | |
| 2013-02-07 | librustc: Lots of de-muting. rs=demuting | Patrick Walton | -5/+5 | |
| 2013-02-04 | std: Stamp out structural records | Tim Chevalier | -1/+1 | |
| See #4665 | ||||
| 2013-01-29 | std: Stop using oldcomm | Brian Anderson | -29/+30 | |
| 2013-01-24 | std: Mop up Mac/Linux breakage | Tim Chevalier | -2/+2 | |
| 2013-01-24 | std: Fix broken Windows function | Tim Chevalier | -1/+1 | |
| 2013-01-24 | convert most of libstd over to structs | Erick Tryzelaar | -188/+243 | |
| 2013-01-23 | libsyntax: Remove `fn() unsafe { ... }`. r=graydon | Patrick Walton | -382/+413 | |
| 2013-01-13 | Support ARM and Android | kyeongwoon | -0/+15 | |
| Conflicts: src/libcore/os.rs src/librustc/back/link.rs src/librustc/driver/driver.rs src/librustc/metadata/loader.rs src/librustc/middle/trans/base.rs | ||||
| 2013-01-11 | libstd: Fix std test. rs=busted | Patrick Walton | -82/+105 | |
| 2013-01-10 | librustc: Make all external functions unsafe. r=tjc | Patrick Walton | -94/+109 | |
| 2013-01-09 | std: fix net::tcp::test fallout from 2db3abd harder | Graydon Hoare | -0/+2 | |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -0/+8 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the ↵ | Patrick Walton | -8/+0 | |
| nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -0/+8 | |
| module scope. r=tjc | ||||
| 2012-12-28 | libstd: Fix tests. rs=bustage | Patrick Walton | -11/+19 | |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ↵ | Patrick Walton | -2/+8 | |
| contain at least two components. r=graydon | ||||
| 2012-12-14 | Rename core::comm to core::oldcomm | Brian Anderson | -19/+18 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-10-20 | std: Shuffle around test ports some more | Brian Anderson | -1/+1 | |
| 2012-10-20 | uv: implement a way to get client's ip/port. | Luqman Aden | -0/+22 | |
| 2012-10-11 | Fix from_buf in test cases | Tim Chevalier | -2/+2 | |
| 2012-10-05 | std: Revert demoding of uv_ll. It can't be done without FFI changes | Brian Anderson | -6/+6 | |
| 2012-10-04 | Remove by-copy mode from std, mostly | Tim Chevalier | -6/+6 | |
| One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes. | ||||
| 2012-10-04 | De-mode comm::Chan | Tim Chevalier | -3/+3 | |
| 2012-10-03 | std: Fix double free in uv | Brian Anderson | -3/+3 | |
| 2012-10-03 | Remove uses of + mode from libstd | Tim Chevalier | -3/+3 | |
| More or less the same as my analogous commit for libcore. Had to remove the forbid(deprecated_modes) pragma from some files -- will restore it after the snapshot. | ||||
| 2012-10-01 | De-export std::{uv, uv_ll, uv_iotask, uv_global_loop}. Part of #3583. | Graydon Hoare | -140/+131 | |
| 2012-10-01 | Move over to calling ptr::addr_of | Tim Chevalier | -22/+22 | |
| Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that. | ||||
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+11 | |
| #[legacy_exports]; | ||||
| 2012-09-19 | std: Partially demode uv::ll | Brian Anderson | -10/+10 | |
| 2012-09-13 | s/vec::as_buf/vec::as_imm_buf/, fix comment, remove set.rs | Niko Matsakis | -2/+2 | |
| hat tip to @jruderman | ||||
| 2012-09-12 | Rename str::unsafe to str::raw | Brian Anderson | -6/+6 | |
