mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 21:21:48 +00:00
19 lines
300 B
C++
19 lines
300 B
C++
#include <mesosphere/interrupts/KInterruptEvent.hpp>
|
|
|
|
namespace mesosphere
|
|
{
|
|
|
|
KInterruptEvent::~KInterruptEvent()
|
|
{
|
|
// delete receiver?
|
|
}
|
|
|
|
Result KInterruptEvent::Initialize(int irqId, u32 flags)
|
|
{
|
|
// TODO implement
|
|
(void)flags;
|
|
this->irqId = irqId;
|
|
return ResultSuccess();
|
|
}
|
|
|
|
}
|