aboutsummaryrefslogtreecommitdiff
path: root/src/inc/proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inc/proc.h')
-rw-r--r--src/inc/proc.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/inc/proc.h b/src/inc/proc.h
deleted file mode 100644
index 39ba704..0000000
--- a/src/inc/proc.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// MIT License, Copyright (c) 2020 Marvin Borner
-
-#ifndef PROC_H
-#define PROC_H
-
-#include <def.h>
-#include <interrupts.h>
-
-#define EFLAGS_ALWAYS 0x2 // Always one
-#define EFLAGS_INTERRUPTS 0x200 // Enable interrupts
-
-#define GDT_USER_CODE_OFFSET 0x1b // User code segment offset in GDT (with ring3 mask)
-#define GDT_USER_DATA_OFFSET 0x23 // User data segment offset in GDT (with ring3 mask)
-
-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