Kernel: Add load_keymap syscall and load Finnish keymap in init

This commit is contained in:
2024-01-10 14:46:29 +02:00
parent 8f89519bcf
commit 51214ea1bf
8 changed files with 29 additions and 0 deletions

View File

@@ -146,6 +146,8 @@ namespace Kernel
BAN::ErrorOr<long> sys_clock_gettime(clockid_t, timespec*);
BAN::ErrorOr<long> sys_load_keymap(const char* path);
TTY& tty() { ASSERT(m_controlling_terminal); return *m_controlling_terminal; }
static Process& current() { return Thread::current().process(); }