diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-12-06 20:14:28 -0500 |
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-12-06 20:14:28 -0500 |
| commit | 2cf843ae6de1f35e5a5d3a947d0179337e82752f (patch) | |
| tree | 7e7983be37568fb0f9cbd806de94573a61df83ca /kernel/boot/interrupts/exceptions.c | |
| parent | 096d9ab61281062b6672c6c9f413de97e034d3f7 (diff) | |
I know; it's POINTLESS! However, I do enjoy programming in C more than
C++ so I ended up spending the hour it takes converting this project
from C++ to C.
Diffstat (limited to '')
| -rw-r--r-- | kernel/boot/interrupts/exceptions.c (renamed from kernel/boot/interrupts/exceptions.cc) | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/kernel/boot/interrupts/exceptions.cc b/kernel/boot/interrupts/exceptions.c index 964d025..fadd3b0 100644 --- a/kernel/boot/interrupts/exceptions.cc +++ b/kernel/boot/interrupts/exceptions.c @@ -22,9 +22,6 @@ #include <libk/stdio.h> #include <stdbool.h> -namespace Interrupts -{ - void exception_handler(int irq_number) { @@ -34,5 +31,3 @@ exception_handler(int irq_number) while (true) __asm__ volatile("cli; hlt"); } - -} |
