From ba4806f9d30d8488ab3100498a24aa8845a372f8 Mon Sep 17 00:00:00 2001 From: apio Date: Sat, 1 Oct 2022 15:53:55 +0200 Subject: [PATCH] Syscall: do not send user programs' output to the serial console --- kernel/src/sys/stdio.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel/src/sys/stdio.cpp b/kernel/src/sys/stdio.cpp index 5aaddee3..857501bc 100644 --- a/kernel/src/sys/stdio.cpp +++ b/kernel/src/sys/stdio.cpp @@ -5,6 +5,5 @@ void sys_write(Context* context, const char* addr, size_t size) { context->rax = size; - Serial::write(addr, size); TextRenderer::write(addr, size); } \ No newline at end of file