aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc
diff options
context:
space:
mode:
authorMarvin Borner2021-01-11 19:24:45 +0100
committerMarvin Borner2021-01-11 19:24:45 +0100
commit9ac1eda2988b6c7472a24817f4fd623de28a33f5 (patch)
treedaac0f3f678a2be542eff36ebf144869c957626b /kernel/inc
parent856b362a4b68d5776ea37dc30a50e7414288d877 (diff)
Much work..
Diffstat (limited to 'kernel/inc')
-rw-r--r--kernel/inc/proc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/inc/proc.h b/kernel/inc/proc.h
index 7a479be..d4146fe 100644
--- a/kernel/inc/proc.h
+++ b/kernel/inc/proc.h
@@ -6,6 +6,7 @@
#include <def.h>
#include <interrupts.h>
#include <list.h>
+#include <stack.h>
#include <sys.h>
#define PROC_QUANTUM 42 // Milliseconds or something // TODO
@@ -24,7 +25,7 @@ struct proc {
struct regs regs;
struct regs regs_backup;
enum proc_state state;
- struct list *messages;
+ struct stack *messages;
};
struct proc *kernel_proc;