diff options
| author | Yuki Okushi <huyuumi.dev+love@gmail.com> | 2023-01-13 05:47:21 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-13 05:47:21 +0900 |
| commit | fa8f77a1deb0952fa81fd4f2f0809ceec8d7f7e8 (patch) | |
| tree | 71d0334f6ff4187b0aeb1a431fc098094f95a679 /src | |
| parent | 1bc3683b3275a5eb2ed13d24edcdcbc59afe5d70 (diff) | |
| parent | 46f9e878f68e6ece9e8dad54c67e97e5dd5838e1 (diff) | |
| download | rust-fa8f77a1deb0952fa81fd4f2f0809ceec8d7f7e8.tar.gz rust-fa8f77a1deb0952fa81fd4f2f0809ceec8d7f7e8.zip | |
Rollup merge of #105795 - nicholasbishop:bishop-stabilize-efiapi, r=joshtriplett
Stabilize `abi_efiapi` feature Tracking issue: https://github.com/rust-lang/rust/issues/65815 Closes #65815
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/unstable-book/src/language-features/abi-efiapi.md | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/doc/unstable-book/src/language-features/abi-efiapi.md b/src/doc/unstable-book/src/language-features/abi-efiapi.md deleted file mode 100644 index b492da88474..00000000000 --- a/src/doc/unstable-book/src/language-features/abi-efiapi.md +++ /dev/null @@ -1,23 +0,0 @@ -# `abi_efiapi` - -The tracking issue for this feature is: [#65815] - -[#65815]: https://github.com/rust-lang/rust/issues/65815 - ------------------------- - -The `efiapi` calling convention can be used for defining a function with -an ABI compatible with the UEFI Interfaces as defined in the [UEFI -Specification]. - -Example: - -```rust,ignore (not-all-targets-support-uefi) -#![feature(abi_efiapi)] - -extern "efiapi" { fn f1(); } - -extern "efiapi" fn f2() { todo!() } -``` - -[UEFI Specification]: https://uefi.org/specs/UEFI/2.10/ |
