Kernel: Make Processor structure default to zero

This moves processor info to bss instead of having it in data section
This commit is contained in:
2026-01-16 16:24:47 +02:00
parent 34e84f8b07
commit d3df00f0ba
2 changed files with 6 additions and 1 deletions

View File

@@ -209,7 +209,7 @@ namespace Kernel
static vaddr_t s_shared_page_vaddr;
ProcessorID m_id { 0 };
uint8_t m_index { 0xFF };
uint8_t m_index { 0 };
vaddr_t m_thread_syscall_stack;