Kernel: Start work on making tty a file

TTY is now a file that you can read from/write to. I still have
to port shell to use this new interface
This commit is contained in:
Bananymous
2023-04-05 00:56:09 +03:00
parent 783842bac2
commit 7f95444bb5
17 changed files with 718 additions and 491 deletions

View File

@@ -43,8 +43,8 @@ set(KERNEL_SOURCES
kernel/Storage/StorageDevice.cpp
kernel/Syscall.cpp
kernel/Thread.cpp
kernel/TTY.cpp
kernel/VesaTerminalDriver.cpp
kernel/Terminal/TTY.cpp
kernel/Terminal/VesaTerminalDriver.cpp
userspace/userspace.cpp
icxxabi.cpp
)