aboutsummaryrefslogtreecommitdiff
path: root/src/inc/proc.h
diff options
context:
space:
mode:
authorMarvin Borner2020-08-01 18:37:15 +0200
committerMarvin Borner2020-08-01 18:37:15 +0200
commit1686173757af4e453e7a32d152ec4bd20d789652 (patch)
tree539d90855fa59c85c043976fcd9cd3075ebc8d8d /src/inc/proc.h
parent928bf3f29d7a8b2163a3c1d5c15554d5b42c606b (diff)
Started multitasking
Diffstat (limited to 'src/inc/proc.h')
-rw-r--r--src/inc/proc.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/inc/proc.h b/src/inc/proc.h
new file mode 100644
index 0000000..dc8b9e9
--- /dev/null
+++ b/src/inc/proc.h
@@ -0,0 +1,22 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
+#ifndef PROC_H
+#define PROC_H
+
+#include <def.h>
+#include <interrupts.h>
+
+enum state { PROC_RUNNING, PROC_ASLEEP };
+
+struct proc {
+ u32 pid;
+ enum state state;
+ struct regs regs;
+ /* struct proc *parent; */
+ struct proc *next;
+};
+
+void proc_init();
+struct proc *proc_make();
+
+#endif