mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 07:12:43 +00:00 
			
		
		
		
	 b91df26d4a
			
		
	
	
		b91df26d4a
		
	
	
	
	
		
			
			If we are in a shared interrupt handler, the called handlers might indicate it was not their interrupt, so we should not increment the call counter of these handlers.
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			734 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			734 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <Kernel/Interrupts/UnhandledInterruptHandler.h>
 | |
| #include <Kernel/Panic.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| UnhandledInterruptHandler::UnhandledInterruptHandler(u8 interrupt_vector)
 | |
|     : GenericInterruptHandler(interrupt_vector)
 | |
| {
 | |
| }
 | |
| 
 | |
| bool UnhandledInterruptHandler::handle_interrupt(const RegisterState&)
 | |
| {
 | |
|     PANIC("Interrupt: Unhandled vector {} was invoked for handle_interrupt(RegisterState&).", interrupt_number());
 | |
| }
 | |
| 
 | |
| [[noreturn]] bool UnhandledInterruptHandler::eoi()
 | |
| {
 | |
|     PANIC("Interrupt: Unhandled vector {} was invoked for eoi().", interrupt_number());
 | |
| }
 | |
| 
 | |
| UnhandledInterruptHandler::~UnhandledInterruptHandler()
 | |
| {
 | |
| }
 | |
| }
 |