diff options
author | dzwdz | 2022-07-01 20:36:59 +0200 |
---|---|---|
committer | dzwdz | 2022-07-01 20:36:59 +0200 |
commit | 58c44c9a8feb8c258dcd85209149c16342995ec7 (patch) | |
tree | f3a3d61291beada2c3f9e7c773d42c202054263c /src/init/stdlib.h | |
parent | 5b9f1ea3911a6e972263d00ea2ec04a56f56166d (diff) |
kernel: add the debug_klog syscall for tracking down process ids
Diffstat (limited to 'src/init/stdlib.h')
-rw-r--r-- | src/init/stdlib.h | 2 |
1 files changed, 2 insertions, 0 deletions
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; |