feat: add userspace system logging, rename klog to syslog, rename relevant syscalls and API functions

This commit is contained in:
2026-08-14 18:37:27 +02:00
parent 8e45d43116
commit 724029cacb
26 changed files with 139 additions and 52 deletions
+1 -1
View File
@@ -250,7 +250,7 @@ namespace Kt {
g_suppressKernelLog = false;
}
int64_t ReadKernelLog(char* buf, uint64_t size) {
int64_t ReadKernelLogBuffer(char* buf, uint64_t size) {
if (buf == nullptr || size == 0) return 0;
uint64_t toRead = g_klogCount;