Skip to content

Commit 58e20f9

Browse files
committed
Reducing page size to 512KB
1 parent 2d8c989 commit 58e20f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mem/arena.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std::time::Instant;
66
use mock_instant::Instant;
77

88
#[cfg(not(test))]
9-
pub const PAGE_SIZE: usize = 1 << 20;
9+
pub const PAGE_SIZE: usize = 1 << 19;
1010

1111
#[cfg(test)]
1212
pub const PAGE_SIZE: usize = 7;

0 commit comments

Comments
 (0)