Enlarged the kernel heap to 32 MB for now, to relieve the "heap overgrown" thing a bit.

That buys some more time before switching to a slab allocator :)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16767 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-03-13 17:18:15 +00:00
parent 0581480cfe
commit 58d9acf59e

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2005, Axel Dörfler, axeld@pinc-software.de.
* Copyright 2002-2006, Axel Dörfler, axeld@pinc-software.de.
* Distributed under the terms of the MIT License.
*
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
@ -14,8 +14,8 @@
struct kernel_args;
#define HEAP_SIZE 0x01000000
// 16 MB heap for the kernel
#define HEAP_SIZE 0x02000000
// 32 MB heap for the kernel (!)
#ifdef __cplusplus