Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document handle_alloc_error feature in Unstable Book #108676

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/doc/unstable-book/src/language-features/alloc-error-handler.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# `alloc_error_handler`

The tracking issue for this feature is: [#51540]

[#51540]: https://github.com/rust-lang/rust/issues/51540

------------------------

This attribute is mandatory when using the alloc crate without the std crate. It is used when handling out of memory (OOM) allocation error, and is called
by `alloc::alloc::handle_alloc_error`

``` rust,ignore (partial-example)
#![feature(alloc_error_handler)]
#![no_std]

#[alloc_error_handler]
fn foo(_: core::alloc::Layout) -> ! {
// …
}
```