Expand description
x86_64 descriptor tables: TSS, GDT, and IDT.
Authors: MarioS271
Modulesยง
- gdt ๐
- Global Descriptor Table (GDT): owns the kernel segment descriptors and the TSS selector, and loads them into the CPU.
- idt ๐
- Interrupt Descriptor Table (IDT): maps every interrupt vector to its handler and loads the table into the CPU.
- tss ๐
- Task State Segment (TSS): owns the Interrupt Stack Table and its dedicated stacks for exceptions that need a known-good stack.