| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 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 | |
| 2012-09-12 | Rename vec::unsafe to vec::raw | Brian Anderson | -5/+5 | |
| 2012-09-04 | Merge pull request #3383 from crabtw/fbsd | Brian Anderson | -10/+0 | |
| use native log2 function and enable freebsd tests in uv_ll | ||||
| 2012-09-04 | libstd: "import" -> "use" | Patrick Walton | -3/+3 | |
| 2012-09-05 | use native log2 function and enable freebsd tests in uv_ll | Jyun-Yan You | -10/+0 | |
| 2012-09-02 | std: warn(non_camel_case_types) everywhere. still some exceptions | Brian Anderson | -1/+1 | |
| 2012-08-29 | std: More camel casing | Brian Anderson | -0/+2 | |
| 2012-08-27 | preliminary work on making future's sendable | Niko Matsakis | -3/+3 | |
| also various improvements to the ptr casting fns: - rename assimilate() to to_unsafe_ptr() (fixes #3110) - introduce `unsafe::copy_lifetime()` to copy the lifetime from one ptr to another | ||||
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -6/+6 | |
| 2012-08-23 | Rename str::bytes to str::to_bytes | Tim Chevalier | -2/+2 | |
| Closes #3245 | ||||
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -84/+84 | |
| 2012-08-16 | Add std::comm with DuplexStream | Eric Holk | -12/+13 | |
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -8/+8 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -1/+1 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -6/+2 | |
| 2012-08-02 | Make comparisons between region pointers work | Tim Chevalier | -2/+3 | |
| Region pointers were considered a scalar type, so compare_scalar_type would get called to compare region pointers in trans. This would fail, since compare_scalar_type has no case for region pointers. Changed type_is_scalar to return false for region pointers. This had the side effect of breaking casts to types of the form &T. To ameliorate that, I added library functions ptr::assimilate (taking a &T to a *T) and ptr::to_uint (taking a &T to a uint), both of which use reinterpret_cast. While I was at it, I removed ty::type_has_resources, which is dead code. | ||||
| 2012-08-01 | Convert ret to return | Brian Anderson | -58/+58 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -84/+84 | |
| 2012-07-24 | Update some str functions to slices, merge as_buf and unpack_slice. | Graydon Hoare | -6/+4 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -54/+55 | |
| #2907. | ||||
| 2012-07-12 | Get rid of all of the remaining /~s in the code base. | Michael Sullivan | -4/+4 | |
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -21/+21 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-07-04 | Remove empty argument lists from do expressions | Ben Striegel | -2/+2 | |
| 2012-07-03 | Change crust -> extern. | Graydon Hoare | -12/+12 | |
| 2012-07-03 | Mop up a few extra native -> foreign changes. | Graydon Hoare | -12/+12 | |
| 2012-07-03 | Switch 'native' to 'extern' (or 'foreign' in some descriptions) | Graydon Hoare | -13/+13 | |
| 2012-07-02 | std: Add missing cfg attr for freebsd | Brian Anderson | -0/+1 | |
| 2012-07-02 | Merge remote-tracking branch 'brson/uv' | Brian Anderson | -10/+273 | |
| Conflicts: src/libstd/net_ip.rs src/libstd/net_tcp.rs | ||||
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -2/+2 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -2/+2 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -9/+9 | |
| 2012-06-29 | Ignore various uv tests that fail | Brian Anderson | -1/+4 | |
| 2012-06-29 | std: uv::ll fixes for 32bit linux | Jeff Olson | -11/+54 | |
| 2012-06-29 | std: cleanups, post-rebase | Jeff Olson | -1/+1 | |
| 2012-06-29 | std/rt: cleanup and adding sockaddr_in6 mapping for win32 | Jeff Olson | -17/+20 | |
| 2012-06-29 | std: fix errors from recent rebase and vec expr/type syntax update | Jeff Olson | -9/+9 | |
| 2012-06-29 | std: addressing #2656 (ipv6 support in net::tcp) | Jeff Olson | -0/+23 | |
| .. there are some additional FIXME nags in net_tcp (L 1012) about blocking because libuv is holding unsafe ptrs to task local data. the proposed fix going is not really feasible w/ the current design, IMO, but i'll leave it there in case someone really wants to make the case without creating more hassle than it's worth. | ||||
| 2012-06-29 | std: add uv::ll::is_ipv6_addrinfo and get_INADDR_NONE | Jeff Olson | -0/+8 | |
| 2012-06-29 | std: whitespace/comment clean | Jeff Olson | -9/+11 | |
