Skip to content

Commit

Permalink
2x allocator buf size
Browse files Browse the repository at this point in the history
  • Loading branch information
d0iasm committed Aug 25, 2024
1 parent bf3fe0a commit 36d9670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noli/src/sys/wasabi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ trait MutableAllocator {
fn dealloc(&mut self, _ptr: *mut u8, _layout: Layout);
}

const ALLOCATOR_BUF_SIZE: usize = 0x120000;
const ALLOCATOR_BUF_SIZE: usize = 0x240000;
pub struct WaterMarkAllocator {
buf: [u8; ALLOCATOR_BUF_SIZE],
used_bytes: usize,
Expand Down

0 comments on commit 36d9670

Please sign in to comment.