summary refs log tree commit diff
path: root/src/libstd/dbg.rs
AgeCommit message (Collapse)AuthorLines
2012-10-04Remove by-copy mode from std, mostlyTim Chevalier-1/+1
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-03Remove uses of + mode from libstdTim Chevalier-4/+4
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-01Move over to calling ptr::addr_ofTim Chevalier-4/+4
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-28std: Eliminate deprecated patternsBrian Anderson-1/+0
2012-09-27De-export std::{dbg,sha1,md4,tempfile,term}. Part of #3583.Graydon Hoare-14/+7
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+1
#[legacy_exports];
2012-09-18core: Rename 'unsafe' mod to 'cast'Brian Anderson-1/+1
2012-09-04libstd: "import" -> "use"Patrick Walton-1/+1
2012-09-02std: warn(non_camel_case_types) everywhere. still some exceptionsBrian Anderson-1/+0
2012-09-01Demode reinterpret_castBrian Anderson-2/+2
2012-08-31Remove deprecated modes from dbg.rsKevin Cantu-3/+5
2012-08-28CamelCasify lots of stdBen Striegel-0/+1
2012-08-13core: Camel case some lesser-used modulesBrian Anderson-6/+6
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-2/+2
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-1/+1
2012-06-28Fix sys::refcount and remove dbg::refcountBen Blum-6/+0
2012-06-06std: Add debug::breakpointBrian Anderson-0/+14
2012-06-03prohibit type parameters in native fns and other minor fixesNiko Matsakis-10/+22
trans now can safely assert that it never sees a type param
2012-03-09std: Convert to rustdocBrian Anderson-9/+1
2012-03-05Remove dead code from rt (debug_obj, rust_obj, rust_closure, rust_box_obj, ↵Graydon Hoare-16/+0
rust_vtable)
2012-01-19Use ctypes in native function declarationsHaitao Li-1/+2
2011-12-06Establish 'core' library separate from 'std'.Graydon Hoare-0/+71