diff options
| author | Simon Sapin <simon.sapin@exyr.org> | 2018-05-31 20:24:50 +0200 |
|---|---|---|
| committer | Simon Sapin <simon.sapin@exyr.org> | 2018-06-11 13:48:57 -0700 |
| commit | b2d526cc8ccae720713ee15c1c2878dc5c7e94f5 (patch) | |
| tree | c3218c199f3e8cd9db11dcc79e4c6a9492e7a6be | |
| parent | a24924f6834ea6e5bd813d006a12aef8e5dbd5e9 (diff) | |
| download | rust-b2d526cc8ccae720713ee15c1c2878dc5c7e94f5.tar.gz rust-b2d526cc8ccae720713ee15c1c2878dc5c7e94f5.zip | |
Mark alloc_jemalloc as perma-unstable
| -rw-r--r-- | src/doc/unstable-book/src/library-features/alloc-jemalloc.md | 13 | ||||
| -rw-r--r-- | src/liballoc_jemalloc/lib.rs | 5 |
2 files changed, 2 insertions, 16 deletions
diff --git a/src/doc/unstable-book/src/library-features/alloc-jemalloc.md b/src/doc/unstable-book/src/library-features/alloc-jemalloc.md deleted file mode 100644 index 425d4cb79b2..00000000000 --- a/src/doc/unstable-book/src/library-features/alloc-jemalloc.md +++ /dev/null @@ -1,13 +0,0 @@ -# `alloc_jemalloc` - -The tracking issue for this feature is: [#33082] - -[#33082]: https://github.com/rust-lang/rust/issues/33082 - -See also [`alloc_system`](library-features/alloc-system.html). - ------------------------- - -This feature has been replaced by [the `jemallocator` crate on crates.io.][jemallocator]. - -[jemallocator]: https://crates.io/crates/jemallocator diff --git a/src/liballoc_jemalloc/lib.rs b/src/liballoc_jemalloc/lib.rs index ce856eccd83..b3b20715511 100644 --- a/src/liballoc_jemalloc/lib.rs +++ b/src/liballoc_jemalloc/lib.rs @@ -11,9 +11,8 @@ #![no_std] #![allow(unused_attributes)] #![unstable(feature = "alloc_jemalloc", - reason = "this library is unlikely to be stabilized in its current \ - form or name", - issue = "27783")] + reason = "implementation detail of std, does not provide any public API", + issue = "0")] #![feature(core_intrinsics)] #![feature(libc)] #![feature(linkage)] |
