aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--arch/x86_64/include/arch/interrupt_handling/generic_interrupt_handler.hpp4
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