From 60c26cd332a044bb9003091b9196cc404ebe5482 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 1 Jul 2010 19:49:53 +0000 Subject: [PATCH] * Enabled the slab allocator as default allocator. * The previous kernel heap has only an advantage for debugging, anyway, but the actual reason for this change is bug #6232, and Haiku should crash for most people since a week now. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37327 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- build/config_headers/kernel_debug_config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/config_headers/kernel_debug_config.h b/build/config_headers/kernel_debug_config.h index f286aa7547..08eb49ba47 100644 --- a/build/config_headers/kernel_debug_config.h +++ b/build/config_headers/kernel_debug_config.h @@ -99,10 +99,10 @@ #define ENABLE_SWAP_SUPPORT 1 // Use the slab allocator as generic memory allocator (malloc()/free()). -#define USE_SLAB_ALLOCATOR_FOR_MALLOC 0 +#define USE_SLAB_ALLOCATOR_FOR_MALLOC 1 // When set limits the amount of available RAM (in MB). -//#define LIMIT_AVAILABLE_MEMORY 256 +//#define LIMIT_AVAILABLE_MEMORY 256 #endif // KERNEL_DEBUG_CONFIG_H