diff options
Diffstat (limited to 'src/inc/proc.h')
-rw-r--r-- | src/inc/proc.h | 22 |
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 |