bench/page-init: page count

This commit is contained in:
Mitchell Hashimoto
2024-02-22 21:23:05 -08:00
parent 7ad94caaeb
commit 396cf5eb7a
2 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@ const Args = struct {
mode: Mode = .alloc, mode: Mode = .alloc,
/// The number of pages to create sequentially. /// The number of pages to create sequentially.
count: usize = 20_000, count: usize = 208_235,
/// This is set by the CLI parser for deinit. /// This is set by the CLI parser for deinit.
_arena: ?ArenaAllocator = null, _arena: ?ArenaAllocator = null,

View File

@ -1,6 +1,7 @@
const builtin = @import("builtin"); const builtin = @import("builtin");
const page = @import("page.zig"); const page = @import("page.zig");
pub const PageList = @import("PageList.zig");
pub const Terminal = @import("Terminal.zig"); pub const Terminal = @import("Terminal.zig");
pub const Page = page.Page; pub const Page = page.Page;