Skip to content

Commit

Permalink
perf(alloc): forward alloc_zeroed
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Kröning <[email protected]>
Signed-off-by: Martin Kröning <[email protected]>
  • Loading branch information
SFBdragon and mkroening committed Apr 24, 2024
1 parent 2347a3f commit d7fbbc9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/mm/allocator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ unsafe impl GlobalAlloc for LockedAllocator {
let layout = Self::align_layout(layout);
unsafe { self.0.dealloc(ptr, layout) }
}

unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut u8 {
let layout = Self::align_layout(layout);
unsafe { self.0.alloc_zeroed(layout) }
}
}

#[cfg(all(test, not(target_os = "none")))]
Expand Down

0 comments on commit d7fbbc9

Please sign in to comment.