Add KInterruptEvent skeleton; remove useless funcs

This commit is contained in:
TuxSH
2018-11-07 01:04:20 +01:00
committed by Michael Scire
parent 2949d08eb2
commit 5222b429c5
8 changed files with 83 additions and 19 deletions

View File

@@ -1,11 +1,11 @@
#include <mesosphere/core/make_object.hpp>
#include <mesosphere/processes/KEvent.hpp>
#include <mesosphere/interrupts/KInterruptEvent.hpp>
using namespace mesosphere;
int main(void) {
auto [res, h1, h2] = MakeObjectWithHandle<KEvent>();
(void)res; (void)h1; (void)h2;
auto [res, h1] = MakeObjectWithHandle<KInterruptEvent>(3, -1);
(void)res; (void)h1; //(void)h2;
for(;;);
return 0;
}