diff options
author | dzwdz | 2021-07-10 19:36:50 +0200 |
---|---|---|
committer | dzwdz | 2021-07-10 19:36:50 +0200 |
commit | a90f613e50b1677b03d19793039e0769a09caf9f (patch) | |
tree | 21b10fb5f924d383d13e711b23f2c0b5181feabf /src/kernel | |
parent | e1a46050ac834b0d1a125847a117edb56d53f32a (diff) |
abstract away logging
Now, the kernel only interfaces with the architecture dependent stuff
via functions declared in generic.h. I'll write a linter enforcing this
soon.
Diffstat (limited to 'src/kernel')
-rw-r--r-- | src/kernel/main.c | 8 | ||||
-rw-r--r-- | src/kernel/panic.h | 7 |
2 files changed, 7 insertions, 8 deletions
diff --git a/src/kernel/main.c b/src/kernel/main.c index aa67d7c..d2d7dda 100644 --- a/src/kernel/main.c +++ b/src/kernel/main.c @@ -6,17 +6,17 @@ void r3_test(); void kmain() { - tty_const("mem..."); + log_const("mem..."); mem_init(); - tty_const("creating process..."); + log_const("creating process..."); struct process *proc = process_new(r3_test); - tty_const("switching..."); + log_const("switching..."); process_switch(proc); } void r3_test() { - tty_const("ok"); + log_const("ok"); asm("cli"); panic(); } diff --git a/src/kernel/panic.h b/src/kernel/panic.h index 54a0b8b..12d26fd 100644 --- a/src/kernel/panic.h +++ b/src/kernel/panic.h @@ -1,14 +1,13 @@ #pragma once #include <arch/generic.h> -#include <arch/i386/tty.h> // TODO abstract away // dumb c shit #define panic_tostr2(x) #x #define panic_tostr(x) panic_tostr2(x) #define panic() do { \ - tty_const(" PANIC! at the "); \ - tty_const(__func__); \ - tty_const(" (" __FILE__ ":" panic_tostr(__LINE__) ") "); \ + log_const(" PANIC! at the "); \ + log_const(__func__); \ + log_const(" (" __FILE__ ":" panic_tostr(__LINE__) ") "); \ halt_cpu(); \ } while (0) |