diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2014-05-06 17:01:16 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2014-05-10 19:58:17 -0400 |
| commit | aaf6e06b01c4f7490e71693d3c96f466032e80d0 (patch) | |
| tree | 70f5b0bc538302c70f38744a78c78430c5d3d947 /src/libstd/rt | |
| parent | 03a5eb4b5295ada37e1e42ad1299857fcb8e81e9 (diff) | |
| download | rust-aaf6e06b01c4f7490e71693d3c96f466032e80d0.tar.gz rust-aaf6e06b01c4f7490e71693d3c96f466032e80d0.zip | |
use jemalloc to implement Vec<T>
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/heap.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstd/rt/heap.rs b/src/libstd/rt/heap.rs index b4b44fbf5c7..1b4b1e444fe 100644 --- a/src/libstd/rt/heap.rs +++ b/src/libstd/rt/heap.rs @@ -8,6 +8,9 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// FIXME: #13994: port to the sized deallocation API when available +// FIXME: #13996: need a way to mark the `allocate` and `reallocate` return values as `noalias` + use intrinsics::{abort, cttz32}; use libc::{c_int, c_void, size_t}; use ptr::RawPtr; |
