diff options
| author | Matteo Gmür <matteo.gmuer1@ost.ch> | 2025-04-28 14:45:54 +0000 |
|---|---|---|
| committer | Matteo Gmür <matteo.gmuer1@ost.ch> | 2025-04-28 14:45:58 +0000 |
| commit | 151b699058d994c0aee18cc17fe56aecc15ea336 (patch) | |
| tree | c68f7fc97f171725ff7db843caa5024c5e8ff86d /arch | |
| parent | adb66c18b9e6ca0f65934f453afda1c5f9fe145f (diff) | |
| download | teachos-151b699058d994c0aee18cc17fe56aecc15ea336.tar.xz teachos-151b699058d994c0aee18cc17fe56aecc15ea336.zip | |
Remove duplicate struct
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/x86_64/include/arch/interrupt_handling/generic_interrupt_handler.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/include/arch/interrupt_handling/generic_interrupt_handler.hpp b/arch/x86_64/include/arch/interrupt_handling/generic_interrupt_handler.hpp index 9530a77..866d15d 100644 --- a/arch/x86_64/include/arch/interrupt_handling/generic_interrupt_handler.hpp +++ b/arch/x86_64/include/arch/interrupt_handling/generic_interrupt_handler.hpp @@ -27,7 +27,7 @@ namespace teachos::arch::interrupt_handling * @param frame Pointer to the interrupt frame containing CPU state. */ [[gnu::interrupt]] [[gnu::section(".interrupt_text")]] - auto generic_interrupt_handler(struct interrupt_frame * frame) -> void; + auto generic_interrupt_handler(interrupt_frame * frame) -> void; /** * @brief Interrupt handler function for syscalls (INT 0x80). @@ -35,7 +35,7 @@ namespace teachos::arch::interrupt_handling * @param frame Pointer to the interrupt frame containing CPU state. */ [[gnu::interrupt]] [[gnu::section(".interrupt_text")]] - auto syscall_interrupt_handler(struct interrupt_frame * frame) -> void; + auto syscall_interrupt_handler(interrupt_frame * frame) -> void; } // namespace teachos::arch::interrupt_handling |
