1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:07:35 +00:00

Kernel: Add support for interrupts on x86_64

This commit is contained in:
Gunnar Beutner 2021-06-26 14:57:13 +02:00 committed by Andreas Kling
parent 233ef26e4d
commit 065c6c307d
4 changed files with 98 additions and 19 deletions

View file

@ -15,7 +15,7 @@
namespace Kernel {
struct TrapFrame {
u32 prev_irq_level;
FlatPtr prev_irq_level;
TrapFrame* next_trap;
RegisterState* regs; // must be last