diff options
author | dzwdz | 2021-09-20 20:32:58 +0200 |
---|---|---|
committer | dzwdz | 2021-09-20 20:32:58 +0200 |
commit | d192b15ee05b6d79c1503eb296fcab693a05dced (patch) | |
tree | 2030e86317f954f67a4e3c4fc0c61798d5555ab2 /src/kernel/proc.c | |
parent | 6371724809b057b25a4efd6c022e7d95068c42f1 (diff) |
create a few specialized panic()s
thanks to this i can tell which ones are placeholders, and which ones
should stay
Diffstat (limited to 'src/kernel/proc.c')
-rw-r--r-- | src/kernel/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/proc.c b/src/kernel/proc.c index 39b4fb0..df20df3 100644 --- a/src/kernel/proc.c +++ b/src/kernel/proc.c @@ -67,7 +67,7 @@ _Noreturn void process_switch_any(void) { process_switch(found); mem_debugprint(); - panic(); + panic_unimplemented(); // TODO shutdown(); } // TODO there's no check for going past the stack - VULN |