Clean up PS/2 keyboard driver, new IPC mechanism MBus (message bus)

This commit is contained in:
2025-11-11 23:10:38 +01:00
parent 07fc8a5562
commit 4fe907a733
6 changed files with 253 additions and 75 deletions

View File

@ -9,6 +9,7 @@
#include "vfs/vfs.h"
#include "bootinfo/bootinfo.h"
#include "ipc/pipe/pipe.h"
#include "ipc/mbus/mbus.h"
#include "sysdefs/proc.h"
#include "sysdefs/fs.h"
#include "time/time.h"
@ -222,6 +223,7 @@ void proc_reaper(void) {
void proc_tick(void) {
proc_reaper();
ipc_mbustick();
}
void proc_sched(void *cpustate) {