mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-12-25 22:21:14 +00:00
16 lines
314 B
C++
16 lines
314 B
C++
#include <mesosphere/processes/KWritableEvent.hpp>
|
|
#include <mesosphere/processes/KReadableEvent.hpp>
|
|
#include <mesosphere/processes/KEvent.hpp>
|
|
|
|
namespace mesosphere
|
|
{
|
|
|
|
Result KWritableEvent::Signal() {
|
|
return this->client->Signal();
|
|
}
|
|
|
|
Result KWritableEvent::Clear() {
|
|
return this->client->Clear();
|
|
}
|
|
|
|
}
|