ProcessManager: Implement core process management logic.

This commit is contained in:
Michael Scire
2018-05-03 23:58:25 -06:00
parent 999498c0a0
commit d6cf7c605f
12 changed files with 688 additions and 99 deletions

View File

@@ -7,7 +7,7 @@
#define SYSTEMEVENT_INDEX_WAITHANDLE 0
#define SYSTEMEVENT_INDEX_SGNLHANDLE 1
class SystemEvent : IEvent {
class SystemEvent : public IEvent {
public:
SystemEvent(EventCallback callback) : IEvent(0, callback) {
Handle wait_h;