about summary refs log tree commit diff
path: root/src/liballoc/heap.rs
AgeCommit message (Expand)AuthorLines
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
2014-09-06fix sized deallocation for procDaniel Micay-2/+17
2014-08-26DST coercions and DST structsNick Cameron-0/+6
2014-08-23Copy only up to `min(new_size, old_size)` when doing reallocate.Felix S. Klock II-1/+2
2014-08-19A few minor documentation fixesP1start-8/+8
2014-08-04rustc: Link entire archives of native librariesAlex Crichton-0/+3
2014-06-29librustc: Remove the fallback to `int` for integers and `f64` forPatrick Walton-1/+1
2014-06-28Rename all raw pointers as necessaryAlex Crichton-5/+6
2014-06-18Merge conflicts from the rollupAlex Crichton-1/+1
2014-06-16alloc: Refactor OOM into a common routineAlex Crichton-3/+2
2014-06-16alloc: Allow disabling jemallocAlex Crichton-48/+199
2014-06-16alloc: Format heap.rs to 80-char maxAlex Crichton-24/+39
2014-06-11rustc: Remove ~[T] from the languageAlex Crichton-25/+0
2014-05-30Register new snapshotsAlex Crichton-8/+1
2014-05-22libcore: Remove all uses of `~str` from `libcore`.Patrick Walton-6/+6
2014-05-21alter `exchange_free` for sized deallocationDaniel Micay-3/+9