From b450065984b1588966694579230dc40c802212e7 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Fri, 12 Apr 2024 14:03:29 +0200 Subject: Kernel/MMU: Dellocate pagedirectory when process exits. --- userland/libc/malloc/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'userland') diff --git a/userland/libc/malloc/malloc.c b/userland/libc/malloc/malloc.c index 1c992ef..bd880b8 100644 --- a/userland/libc/malloc/malloc.c +++ b/userland/libc/malloc/malloc.c @@ -4,7 +4,7 @@ #include #include #include -#define NEW_ALLOC_SIZE 0x20000 +#define NEW_ALLOC_SIZE 0x5000 #define IS_FREE (1 << 0) #define IS_FINAL (1 << 1) -- cgit v1.2.3