mesosphere: Skeleton K(Readable/Writable)Event

This commit is contained in:
Michael Scire
2018-11-05 03:51:50 -08:00
parent 600afa5f0f
commit a4419dfc41
7 changed files with 191 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#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();
}
}