mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-08 04:50:08 +03:00
8944ca830f
is_sharing_with_others API was never really put to use properly since it was introduced. The only place where it is used in Interrupts.cpp is in conjuction with is_shared_handler() which is only true for SharedIRQHandler and is_sharing_with_others will always return false. Remove that API.
32 lines
941 B
C++
32 lines
941 B
C++
/*
|
|
* Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <Kernel/Interrupts/GenericInterruptHandler.h>
|
|
|
|
namespace Kernel {
|
|
class UnhandledInterruptHandler final : public GenericInterruptHandler {
|
|
public:
|
|
explicit UnhandledInterruptHandler(u8 interrupt_vector);
|
|
virtual ~UnhandledInterruptHandler();
|
|
|
|
virtual bool handle_interrupt(RegisterState const&) override;
|
|
|
|
[[noreturn]] virtual bool eoi() override;
|
|
|
|
virtual HandlerType type() const override { return HandlerType::UnhandledInterruptHandler; }
|
|
virtual StringView purpose() const override { return "Unhandled Interrupt Handler"sv; }
|
|
virtual StringView controller() const override { VERIFY_NOT_REACHED(); }
|
|
|
|
virtual size_t sharing_devices_count() const override { return 0; }
|
|
virtual bool is_shared_handler() const override { return false; }
|
|
|
|
private:
|
|
};
|
|
}
|