summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAaron Turon <aturon@mozilla.com>2017-03-14 20:52:20 -0700
committerAlex Crichton <alex@alexcrichton.com>2017-03-17 13:28:37 -0700
commit9511fe60ce8c7498958662c2bf2c34da0778120d (patch)
tree9bec497bab94923d2a792f4fa6bf123029326086 /src
parentd38ea8b371f781aa4b0689c46ede75b5385fedba (diff)
downloadrust-9511fe60ce8c7498958662c2bf2c34da0778120d.tar.gz
Stabilize process_abort feature, closes #37838
Diffstat (limited to 'src')
-rw-r--r--src/libstd/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs
index f846ef3e69e..97c48ee5903 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -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() };
}