2017-07-12 14:02:10 +00:00
|
|
|
#pragma once
|
|
|
|
#include <nx/IKernelCapabilityHandler.h>
|
|
|
|
#include <nx/InteruptEntry.h>
|
|
|
|
|
|
|
|
namespace nx
|
|
|
|
{
|
|
|
|
class InteruptHandler :
|
|
|
|
public IKernelCapabilityHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
InteruptHandler();
|
|
|
|
|
2018-06-24 15:01:16 +00:00
|
|
|
void operator=(const InteruptHandler& other);
|
2017-07-12 14:02:10 +00:00
|
|
|
bool operator==(const InteruptHandler& other) const;
|
|
|
|
bool operator!=(const InteruptHandler& other) const;
|
|
|
|
|
|
|
|
// kernel capabilty list in/out
|
|
|
|
void importKernelCapabilityList(const fnd::List<KernelCapability>& caps);
|
|
|
|
void exportKernelCapabilityList(fnd::List<KernelCapability>& caps) const;
|
|
|
|
void clear();
|
|
|
|
bool isSet() const;
|
|
|
|
|
|
|
|
// variables
|
2018-03-22 05:26:22 +00:00
|
|
|
const fnd::List<uint16_t>& getInteruptList() const;
|
|
|
|
void setInteruptList(const fnd::List<uint16_t>& interupts);
|
2017-07-12 14:02:10 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
const std::string kModuleName = "INTERUPT_HANDLER";
|
|
|
|
|
|
|
|
bool mIsSet;
|
2018-03-22 05:26:22 +00:00
|
|
|
fnd::List<uint16_t> mInterupts;
|
2017-07-12 14:02:10 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|