From 681835d2df6af1c2fe27e860298981f86f00f7f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 28 Feb 2008 00:29:14 +0000 Subject: [PATCH] * Given its limitations, I should probably not leave it turned on. * Also, a wall size of 64 byte is a bit large for every day use, too :-) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24163 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/libroot/posix/malloc/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/system/libroot/posix/malloc/config.h b/src/system/libroot/posix/malloc/config.h index a4dc692d9a..018f4a8642 100644 --- a/src/system/libroot/posix/malloc/config.h +++ b/src/system/libroot/posix/malloc/config.h @@ -63,8 +63,8 @@ enum { SUPERBLOCK_FULLNESS_GROUP = 9 }; #define HEAP_CALL_STACK_SIZE 8 // A simple wall checker -#define HEAP_WALL 1 -#define HEAP_WALL_SIZE 64 +#define HEAP_WALL 0 +#define HEAP_WALL_SIZE 32 // CACHE_LINE = The number of bytes in a cache line.