tty: implement read/write support

This commit is contained in:
2023-06-11 09:23:57 +01:00
parent 557e1dda30
commit abe4af093e
9 changed files with 124 additions and 14 deletions

View File

@@ -8,7 +8,7 @@ static struct vm_cache tty_driver_cache = {
static struct queue tty_drivers;
static spin_lock_t tty_drivers_lock;
kern_status_t tty_init(void)
kern_status_t tty_bootstrap(void)
{
vm_cache_init(&tty_driver_cache);
tty_drivers = QUEUE_INIT;