]> git.lizzy.rs Git - rust.git/commitdiff
Stabilize process_abort feature, closes #37838
authorAaron Turon <aturon@mozilla.com>
Wed, 15 Mar 2017 03:52:20 +0000 (20:52 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Fri, 17 Mar 2017 20:28:37 +0000 (13:28 -0700)
src/libstd/process.rs

index f846ef3e69e093f24f0cb88422f62575c7bd327e..97c48ee59034135b8cc3de89d0dfb13ea45b2c9b 100644 (file)
@@ -1032,7 +1032,7 @@ pub fn exit(code: i32) -> ! {
 /// will be run. If a clean shutdown is needed it is recommended to only call
 /// this function at a known point where there are no more destructors left
 /// to run.
-#[unstable(feature = "process_abort", issue = "37838")]
+#[stable(feature = "process_abort", since = "1.17.0")]
 pub fn abort() -> ! {
     unsafe { ::sys::abort_internal() };
 }