diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-05-25 18:08:43 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-05-25 18:10:57 +0530 |
commit | 0276800c3fc3ec4b73f5b75a2dd075c8d731d070 (patch) | |
tree | 37264f36a32c1e8d721d65b103315cf359ddb7ad /kernel/boot/interrupts/exceptions.cc | |
parent | d19e377907ed6845b17abbaaa663a42bcaf46032 (diff) |
interrupts: rename idt namespace to interrupts
Diffstat (limited to '')
-rw-r--r-- | kernel/boot/interrupts/exceptions.cc (renamed from kernel/boot/idt/exceptions.cc) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/boot/idt/exceptions.cc b/kernel/boot/interrupts/exceptions.cc index 79ffd68..d05bd77 100644 --- a/kernel/boot/idt/exceptions.cc +++ b/kernel/boot/interrupts/exceptions.cc @@ -16,13 +16,13 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include <boot/idt.h> +#include <boot/interrupts.h> #include <common.h> #include <kernel/halt.h> #include <libk/stdio.h> #include <stdbool.h> -namespace IDT +namespace Interrupts { void |