What're the differences between the "Page Table" concept and GDT?
Are the two the same?
Or GDT is just implementation to the Page Table concept?
Asked
Active
Viewed 199 times
0

smalinux
- 1,132
- 2
- 13
- 28
-
4They are different. GDT is for segmentation, page table is for paging. Consult the system programming guide or osdev [GDT](https://wiki.osdev.org/GDT), [paging](https://wiki.osdev.org/Paging) – Jester Feb 10 '20 at 14:59
-
@Jester aha, thank you. – smalinux Feb 10 '20 at 15:04