How to Stop INT
How to Stop INT
How would i stop Applicatons from calling Interupts?
- Combuster
- Member
- Posts: 9301
- Joined: Wed Oct 18, 2006 3:45 am
- Libera.chat IRC: [com]buster
- Location: On the balcony, where I can actually keep 1½m distance
- Contact:
In realmode, you dont.
In protected mode, each interrupt gate or trap gate in the IDT has a DPL, which is set to the lowest privilege level able to call it. if you for instance set it to 2, code executing at ring 2, 1 and 0 can call the interrupt. However, code executing at ring 3 will cause a GPF when they try to call that interrupt.
In protected mode, each interrupt gate or trap gate in the IDT has a DPL, which is set to the lowest privilege level able to call it. if you for instance set it to 2, code executing at ring 2, 1 and 0 can call the interrupt. However, code executing at ring 3 will cause a GPF when they try to call that interrupt.