aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc/sys.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libc/inc/sys.h')
-rw-r--r--libs/libc/inc/sys.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/libs/libc/inc/sys.h b/libs/libc/inc/sys.h
index e7acc49..c181a64 100644
--- a/libs/libc/inc/sys.h
+++ b/libs/libc/inc/sys.h
@@ -21,10 +21,10 @@ enum sys {
SYS_STAT, // Get file information
SYS_READ, // Read file (non-blocking)
SYS_WRITE, // Write to file
- SYS_IOCTL, // Interact with an I/O device
SYS_IOPOLL, // Block proc until I/O device is ready
SYS_IOREAD, // Read data from I/O device (blocking)
SYS_IOWRITE, // Write data to I/O device
+ SYS_IOCONTROL, // Interact with an I/O device
SYS_EXEC, // Execute path
SYS_EXIT, // Exit current process
SYS_BOOT, // Boot functions (e.g. reboot/shutdown)
@@ -36,6 +36,17 @@ enum sys {
/* SYS_NET_RECEIVE, // Receive data from socket */
};
+enum io_type {
+ IO_MIN,
+ IO_FRAMEBUFFER,
+ IO_NETWORK,
+ IO_KEYBOARD,
+ IO_MOUSE,
+ IO_TIMER,
+ IO_BUS,
+ IO_MAX,
+};
+
struct event_keyboard {
u32 magic;
u32 scancode;