File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 48
48
//! the Rust standard library. For example, methods that return a
49
49
//! `Vec` rather than filling a statically-sized array. This requires
50
50
//! a global allocator; you can use the `global_allocator` feature or
51
- //! provide your own.
51
+ //! provide your own. This is independent of internal direct usages of the
52
+ //! UEFI boot service allocator which may happen anyway, where necessary.
52
53
//! - `global_allocator`: Set [`allocator::Allocator`] as the global Rust
53
54
//! allocator. This is a simple allocator that relies on the UEFI pool
54
55
//! allocator. You can choose to provide your own allocator instead of
Original file line number Diff line number Diff line change @@ -220,6 +220,13 @@ impl BootServices {
220
220
/// Stores the current UEFI memory map in an UEFI-heap allocated buffer
221
221
/// and returns a [`MemoryMap`].
222
222
///
223
+ /// # Parameters
224
+ ///
225
+ /// - `mt`: The memory type for the backing memory on the UEFI heap.
226
+ /// Usually, this is [`MemoryType::LOADER_DATA`]. You can also use a
227
+ /// custom type.
228
+ ///
229
+ ///
223
230
/// # Errors
224
231
///
225
232
/// See section `EFI_BOOT_SERVICES.GetMemoryMap()` in the UEFI Specification
You can’t perform that action at this time.
0 commit comments