ipc works better, pagefault still

This commit is contained in:
user
2026-02-24 21:16:31 +01:00
parent fcc2e73350
commit e3452cf051
5 changed files with 28 additions and 19 deletions

View File

@@ -78,6 +78,8 @@ Thread::Thread (bool kernel, void * startframe, int num_pages): queue_link(null
.address = (uintptr_t)(appstack_table) >> 12
};
prepareContext(StackPointer.isr, context, kickoff, reinterpret_cast<uintptr_t>(this), 0, 0);
}

View File

@@ -21,7 +21,7 @@
#include "../memory/pagetable.h"
/// Stack size for each thread
constexpr uint32_t STACK_SIZE = 3072;
constexpr uint32_t STACK_SIZE = 3472;
struct IpcStruct {