Commit message (Collapse) | Author | ||
---|---|---|---|
2025-09-16 | interrupts: exception_handler should accept IRQ numberHEADmain | Raghuram Subramani | |
2025-09-16 | kernel: boot: interrupts: split interrupt-specific functions into its | Raghuram Subramani | |
own file | |||
2025-06-01 | interrupts: refactor interrupts enable/disable API | Raghuram Subramani | |
2025-05-25 | interrupts: use constants for IDT_ENTRY attributes | Raghuram Subramani | |
2025-05-25 | interrupts: rename idt namespace to interrupts | Raghuram Subramani | |
2025-05-24 | interrupts: fix incorrect segment selector offset | Raghuram Subramani | |
IDT entry was setting the segment selector (GDT offset) to 0, which is the NULL selector. Therefore, a general protection fault was triggered crashing the kernel. This commit sets it to 0x08 (the first selector). | |||
2025-02-07 | IDT: Initialize IDT with a very basic exception handler that does nothing | Raghuram Subramani | |