Skip to content

Commit 9511fe6

Browse files
aturonalexcrichton
authored andcommitted
Stabilize process_abort feature, closes #37838
1 parent d38ea8b commit 9511fe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/process.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1032,7 +1032,7 @@ pub fn exit(code: i32) -> ! {
10321032
/// will be run. If a clean shutdown is needed it is recommended to only call
10331033
/// this function at a known point where there are no more destructors left
10341034
/// to run.
1035-
#[unstable(feature = "process_abort", issue = "37838")]
1035+
#[stable(feature = "process_abort", since = "1.17.0")]
10361036
pub fn abort() -> ! {
10371037
unsafe { ::sys::abort_internal() };
10381038
}

0 commit comments

Comments
 (0)