aboutsummaryrefslogtreecommitdiff
path: root/src/inc
diff options
context:
space:
mode:
authorMarvin Borner2020-08-06 20:41:07 +0200
committerMarvin Borner2020-08-06 20:41:07 +0200
commit8c5fef6e00b0afe7a4f72fe9f8c72ade1ce4c673 (patch)
tree30c0f549b24afc456e1f0b028cecfee7796ccf2b /src/inc
parent9dbf8131d6aaff1617ef2bc7ebf54838f808688d (diff)
Some context switch fixes.
I'm quite tired actually and I don't seem to find my mistakes...
Diffstat (limited to 'src/inc')
-rw-r--r--src/inc/load.h6
-rw-r--r--src/inc/proc.h8
2 files changed, 8 insertions, 6 deletions
diff --git a/src/inc/load.h b/src/inc/load.h
index 697248e..60fecf9 100644
--- a/src/inc/load.h
+++ b/src/inc/load.h
@@ -5,12 +5,6 @@
#include <proc.h>
-#define EFLAGS_ALWAYS 0x2 // Always one
-#define EFLAGS_INTERRUPTS 0x200 // Enable interrupts
-
-#define GDT_DATA_OFFSET 0x10 // Data segment offset in GDT
-#define GDT_CODE_OFFSET 0x8 // Code segment offset in GDT
-
void bin_load(char *path, struct proc *proc);
#endif
diff --git a/src/inc/proc.h b/src/inc/proc.h
index dc8b9e9..8231810 100644
--- a/src/inc/proc.h
+++ b/src/inc/proc.h
@@ -6,17 +6,25 @@
#include <def.h>
#include <interrupts.h>
+#define EFLAGS_ALWAYS 0x2 // Always one
+#define EFLAGS_INTERRUPTS 0x200 // Enable interrupts
+
+#define GDT_DATA_OFFSET 0x10 // Data segment offset in GDT
+#define GDT_CODE_OFFSET 0x8 // Code segment offset in GDT
+
enum state { PROC_RUNNING, PROC_ASLEEP };
struct proc {
u32 pid;
enum state state;
+ char name[32];
struct regs regs;
/* struct proc *parent; */
struct proc *next;
};
void proc_init();
+void proc_print();
struct proc *proc_make();
#endif