From 58c44c9a8feb8c258dcd85209149c16342995ec7 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Fri, 1 Jul 2022 20:36:59 +0200 Subject: kernel: add the debug_klog syscall for tracking down process ids --- src/init/stdlib.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/init/stdlib.h') diff --git a/src/init/stdlib.h b/src/init/stdlib.h index 03e1717..a48391c 100644 --- a/src/init/stdlib.h +++ b/src/init/stdlib.h @@ -7,6 +7,8 @@ int printf(const char *fmt, ...); int snprintf(char *str, size_t len, const char *fmt, ...); +int _klogf(const char *fmt, ...); // for kernel debugging only + typedef struct { int fd; int pos; -- cgit v1.2.3