about summary refs log tree commit diff
path: root/src/liballoc/heap.rs
AgeCommit message (Expand)AuthorLines
2015-11-24rustfmt: liballoc, liballoc_*, libarenaNick Cameron-1/+1
2015-09-24Better function callsNick Cameron-2/+6
2015-09-24rustfmt liballocNick Cameron-8/+17
2015-08-15alloc: Add issues for all unstable featuresAlex Crichton-1/+2
2015-08-14rustc: Allow changing the default allocatorAlex Crichton-371/+19
2015-06-17alloc: Split apart the global `alloc` featureAlex Crichton-1/+6
2015-06-13Switch to direct HeapAlloc on Windows when not using jemallocPeter Atashian-17/+102
2015-05-11Rollup merge of #25254 - cgaebel:check-sizes-on-allocate, r=GankroSteve Klabnik-0/+12
2015-05-09[liballoc] Adds checks for UB during allocation.Clark Gaebel-0/+12
2015-05-09Convert #[lang="..."] to #[lang = "..."]Nick Hamann-2/+2
2015-04-27std: Prepare for linking to muslAlex Crichton-1/+3
2015-04-24Change name of unit test sub-module to "tests".Johannes Oertel-1/+1
2015-04-16Suppress improper_ctypes warnings when compiling liballoc with external_featuresKrzysztof Drewniak-0/+1
2015-03-31Auto merge of #23549 - aturon:stab-num, r=alexcrichtonbors-1/+0
2015-03-31Stabilize std::numAaron Turon-1/+0
2015-03-30std: Standardize (input, output) param orderingsAlex Crichton-1/+1
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