From db755403e2945fe9d56bcaf577b15785043f7129 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Tue, 24 Sep 2019 17:32:40 +0900 Subject: [PATCH] Move the per-process kernel stack to 0xffffe000 --- config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/config.h b/config.h index fc75863..8c8cc54 100644 --- a/config.h +++ b/config.h @@ -23,6 +23,7 @@ #define CONFIG_KERNEL_HEAP_SIZE 4096 #define CONFIG_KERNEL_STACK_SIZE 4096 +#define CONFIG_KERNEL_STACK_BASE ((void*)0xffffe000) #define CONFIG_USER_STACK_SIZE 4096 #define CONFIG_APIC 0 -- 2.47.3