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

10
kernel/syscall/term.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef SYSCALL_TERM_H_
#define SYSCALL_TERM_H_
#include <stdint.h>
#include <stddef.h>
#include "syscall/syscall.h"
int32_t SYSCALL2(sys_term_write, buffer1, len1);
#endif // SYSCALL_TERM_H_