diff options
author | Marvin Borner | 2020-08-01 18:37:15 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-01 18:37:15 +0200 |
commit | 1686173757af4e453e7a32d152ec4bd20d789652 (patch) | |
tree | 539d90855fa59c85c043976fcd9cd3075ebc8d8d /src/inc | |
parent | 928bf3f29d7a8b2163a3c1d5c15554d5b42c606b (diff) |
Started multitasking
Diffstat (limited to 'src/inc')
-rw-r--r-- | src/inc/load.h | 4 | ||||
-rw-r--r-- | src/inc/proc.h | 22 | ||||
-rw-r--r-- | src/inc/timer.h | 1 |
3 files changed, 26 insertions, 1 deletions
diff --git a/src/inc/load.h b/src/inc/load.h index a02afc0..60fecf9 100644 --- a/src/inc/load.h +++ b/src/inc/load.h @@ -3,6 +3,8 @@ #ifndef LOAD_H #define LOAD_H -void bin_load(char *path); +#include <proc.h> + +void bin_load(char *path, struct proc *proc); #endif 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 diff --git a/src/inc/timer.h b/src/inc/timer.h index 4b2bb8c..7c4f077 100644 --- a/src/inc/timer.h +++ b/src/inc/timer.h @@ -6,5 +6,6 @@ #include <def.h> void timer_install(); +void timer_handler(); // For scheduler #endif |