Skip to content

Commit b60879a

Browse files
committed
Stabilize process_abort feature, closes rust-lang#37838
1 parent f789955 commit b60879a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/process.rs

Lines changed: 1 addition & 1 deletion
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)