about summary refs log tree commit diff
path: root/src/liballoc/heap.rs
AgeCommit message (Expand)AuthorLines
2015-03-23Add note about pointer state after the call.Steve Klabnik-0/+3
2015-03-18Register new snapshotsAlex Crichton-4/+0
2015-03-16remove importsJorge Aparicio-1/+0
2015-03-16impl<T> *const T, impl<T> *mut TJorge Aparicio-0/+1
2015-03-13Add an "allocator" attribute to mark functions as allocatorsBjörn Steinbrink-0/+1
2015-03-03Add `: Box<_>` or `::Box<_>` type annotations to various places.Felix S. Klock II-1/+2
2015-02-26Fixed build with jemalloc disabledValerii Hiora-1/+1
2015-02-09int/uint => isize/usize in liblibc/liballoc/libarenawe-43/+44
2015-01-30Remove all `i` suffixesTobias Bucher-1/+1
2015-01-29Rollup merge of 21681 - japaric:no-warn, r=alexcrichtonManish Goregaokar-0/+1
2015-01-27fix #[cfg(test)] warningsJorge Aparicio-0/+1
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-1/+1
2015-01-23Set unstable feature names appropriatelyBrian Anderson-1/+1
2015-01-21Remove 'since' from unstable attributesBrian Anderson-1/+1
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-1/+1
2015-01-21Test fixes and rebase conflictsAlex Crichton-1/+1
2015-01-21rollup merge of #21444: petrochenkov/nullAlex Crichton-1/+1
2015-01-19Replace `0 as *const/mut T` with `ptr::null/null_mut()`we-1/+1
2015-01-17Remove unnecessary explicit conversions to *const Twe-1/+1
2015-01-11powerpc: Tell liballoc about power alignmentRicho Healey-1/+2
2015-01-07Test fixes and rebase conflictsAlex Crichton-1/+1
2015-01-07Fix warning in liballoc about unused constant MIN_ALIGN when cfg(feature = ex...John Ericson-6/+10
2015-01-07liballoc's "extern_funcs" impl mod had a duplicate and missing itemJohn Ericson-5/+4
2015-01-07Shorten cfg line lengths in liballocJohn Ericson-3/+11
2015-01-07liballoc's "external_funcs" and "external_crate" are now featuresJohn Ericson-5/+5
2015-01-03Initial version of AArch64 support.Akos Kiss-2/+3
2014-12-29std: Second pass stabilization for `ptr`Alex Crichton-2/+2
2014-12-05Utilize fewer reexportsCorey Farwell-1/+2
2014-12-04Add ability to use custom alloc::heap::impAlexander Light-3/+55
2014-11-01bubble up out-of-memory errors from liballocDaniel Micay-56/+28
2014-10-25fix sized deallocation documentationDaniel Micay-13/+13
2014-10-25return the new usable size from reallocate_inplaceDaniel Micay-19/+13
2014-10-25get rid of libc_heap::{malloc_raw, realloc_raw}Daniel Micay-6/+21
2014-10-25Make MIN_ALIGN a const to allow better optimizationBjörn Steinbrink-2/+2
2014-10-09alloc: Convert statics to constantsAlex Crichton-1/+1
2014-10-08saner parameter order for reallocation functionsDaniel Micay-19/+14
2014-10-02Test fixes from the rollupAlex Crichton-0/+1
2014-10-02alloc: fix reallocate_inplace implementationDaniel Micay-9/+26
2014-09-30Fix liballocSteven Fackler-8/+8
2014-09-16Register new snapshotsAlex Crichton-29/+0
2014-09-16Fallout from renamingAaron Turon-2/+2
2014-09-16auto merge of #17197 : nikomatsakis/rust/issue-5527-trait-reform-revisited, r...bors-1/+0
2014-09-15remove the closure_exchange_malloc lang itemDaniel Micay-17/+1
2014-09-15heap: optimize EMPTY to avoid relocationsDaniel Micay-5/+6
2014-09-15heap: rm out-of-date FIXMEsDaniel Micay-2/+0
2014-09-15silence various warnings in stdlib, no idea why they suddenly startedNiko Matsakis-1/+0
2014-09-11auto merge of #17110 : thestinger/rust/dst, r=cmrbors-6/+0
2014-09-10implement sized deallocationDaniel Micay-0/+11
2014-09-10micro-optimize dynamic allocation alignmentDaniel Micay-34/+64
2014-09-09fixes for Box<[T]>Daniel Micay-6/+0