From d436992eb2a28e2e056e96e42072b13d89b44a0b Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sun, 20 Nov 2016 17:16:18 +0000 Subject: Reduce slab size to 2K as very few allocations are above that. --- frontends/amiga/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontends') diff --git a/frontends/amiga/memory.c b/frontends/amiga/memory.c index cf42c1e42..d86f73d74 100755 --- a/frontends/amiga/memory.c +++ b/frontends/amiga/memory.c @@ -21,7 +21,7 @@ #include "amiga/memory.h" #include "utils/log.h" -ULONG __slab_max_size = 8192; /* Enable clib2's slab allocator */ +ULONG __slab_max_size = 2048; /* Enable clib2's slab allocator */ /* Special clear (ie. non-zero) */ void *ami_memory_clear_alloc(size_t size, UBYTE value) -- cgit v1.2.3