Kernel: Add custom stack to double fault handler

This prevents triple faults!
This commit is contained in:
2025-07-02 23:13:17 +03:00
parent 6084aae603
commit 8da4f80453
5 changed files with 20 additions and 11 deletions

View File

@@ -75,7 +75,7 @@ namespace Kernel
private:
IDT() = default;
void register_interrupt_handler(uint8_t index, void (*handler)());
void register_interrupt_handler(uint8_t index, void (*handler)(), uint8_t ist = 0);
void register_syscall_handler(uint8_t index, void (*handler)());
private: