aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/proc.h
diff options
context:
space:
mode:
authorMarvin Borner2020-08-22 13:20:40 +0200
committerMarvin Borner2020-08-22 13:20:40 +0200
commit00a64ff4675b4c1e22d6b4856e1f6b7c04ed96d8 (patch)
treee4f2e6df5750fc6b7334c35ee3d8554cd4b303ce /kernel/inc/proc.h
parent593c80e99342df5e1147b3c0fc893f77ec6f00d5 (diff)
Added proc event list
Diffstat (limited to 'kernel/inc/proc.h')
-rw-r--r--kernel/inc/proc.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/kernel/inc/proc.h b/kernel/inc/proc.h
index 8f93e43..7e13652 100644
--- a/kernel/inc/proc.h
+++ b/kernel/inc/proc.h
@@ -4,7 +4,9 @@
#define PROC_H
#include <def.h>
+#include <event.h>
#include <interrupts.h>
+#include <list.h>
#define PROC_QUANTUM 42 // Milliseconds
@@ -18,7 +20,12 @@ struct proc {
u32 pid;
char name[32];
struct regs regs;
- u32 event;
+ struct list *events;
+};
+
+struct proc_event {
+ struct event_descriptor *desc;
+ void *data;
};
void proc_init();