diff options
author | dzwdz | 2022-04-14 12:19:51 +0200 |
---|---|---|
committer | dzwdz | 2022-04-14 12:19:51 +0200 |
commit | 2eead2f6eab2aa1fbc727ce28d9fa9a8e90a1eec (patch) | |
tree | d4bb0ae50e5f612a4fae67763414f72ea1a85b8a /src/kernel/proc.c | |
parent | dcb2ce6337f54a9821e3971976a07e767846e3c1 (diff) |
kernel: port init's `printf` implementation
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 2f407c3..2c4cc5c 100644 --- a/src/kernel/proc.c +++ b/src/kernel/proc.c @@ -169,7 +169,7 @@ void process_kill(struct process *proc, int ret) { proc->death_msg = ret; process_try2collect(proc); if (proc == process_first) { - tty_const("init killed, quitting..."); + kprintf("init killed, quitting..."); mem_debugprint(); cpu_shutdown(); } |