Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Stabilize process_abort feature, closes #37838
  • Loading branch information
aturon authored and alexcrichton committed Mar 17, 2017
1 parent d38ea8b commit 9511fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/process.rs
Expand Up @@ -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() };
}
Expand Down

0 comments on commit 9511fe6

Please sign in to comment.