From f115be839276e0fc11ae53b392a51a504fca8096 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Mon, 15 Apr 2019 00:04:00 -0400 Subject: [PATCH] shrink initial region table size to fit in 1 page --- h_malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/h_malloc.c b/h_malloc.c index ea0ba0a..409fa2b 100644 --- a/h_malloc.c +++ b/h_malloc.c @@ -772,7 +772,7 @@ struct quarantine_info { size_t size; }; -#define INITIAL_REGION_TABLE_SIZE 256 +#define INITIAL_REGION_TABLE_SIZE 128 #define MAX_REGION_TABLE_SIZE (CLASS_REGION_SIZE / PAGE_SIZE / sizeof(struct region_metadata)) struct region_allocator {