Reimplement the terminal user access via separate syscalls

This commit is contained in:
2025-11-15 00:38:54 +01:00
parent 3726cc49da
commit ecee481b33
8 changed files with 32 additions and 36 deletions

View File

@ -11,6 +11,7 @@
#include "syscall/dev.h"
#include "syscall/time.h"
#include "syscall/ipcmbus.h"
#include "syscall/term.h"
#include "errors.h"
#include "kprintf.h"
@ -75,4 +76,6 @@ SyscallFn SYSCALL_TABLE[SYSCALLS_MAX] = {
[SYS_IPC_MBUSCONSUME] = &sys_ipc_mbusconsume,
[SYS_IPC_MBUSATTCH] = &sys_ipc_mbusattch,
[SYS_IPC_MBUSDTTCH] = &sys_ipc_mbusdttch,
[SYS_TERM_WRITE] = &sys_term_write,
};