From 3f1668290da19734dcbfed633b6f415d1fa21a1a Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 26 Aug 2020 18:01:03 +0200 Subject: Started stack allocator. This will replace the current linear allocator so we can free and realloc memory correctly. This is especially important for the window resizing due to a fixed LFB size. --- kernel/features/syscall.c | 2 +- kernel/main.c | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'kernel') diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index fbbb68b..5915d9d 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -33,7 +33,7 @@ void syscall_handler(struct regs *r) } case SYS_FREE: { printf("free\n"); - free(r->ebx); + free((void *)r->ebx); break; } case SYS_READ: { diff --git a/kernel/main.c b/kernel/main.c index e97dad1..7d87be5 100644 --- a/kernel/main.c +++ b/kernel/main.c @@ -13,8 +13,7 @@ void kernel_main(struct vid_info *vid_info) { - HEAP = 0x00f00000; - HEAP_START = HEAP; // For malloc function + heap_init(0x00f00000); boot_passed = vid_info; -- cgit v1.2.3