diff options
author | Marvin Borner | 2021-04-13 22:09:23 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-13 22:09:23 +0200 |
commit | 9ded3a2bde80eede5fd887812d70c2f834b53c84 (patch) | |
tree | 932a90608c5f30d38b810dc4fe9264cc43c2da68 /libs/libc/inc/sys.h | |
parent | f96b8ad1ee83dec08ae636e179cc48019ca50b12 (diff) |
Started IO dev manager
Diffstat (limited to 'libs/libc/inc/sys.h')
-rw-r--r-- | libs/libc/inc/sys.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libs/libc/inc/sys.h b/libs/libc/inc/sys.h index a9ebf2e..e7acc49 100644 --- a/libs/libc/inc/sys.h +++ b/libs/libc/inc/sys.h @@ -19,10 +19,12 @@ enum sys { SYS_SHACCESS, // Access shared memory SYS_FREE, // Free memory SYS_STAT, // Get file information - SYS_READ, // Read file + SYS_READ, // Read file (non-blocking) SYS_WRITE, // Write to file - SYS_IOCTL, // Interact with a file/device - SYS_POLL, // Wait for multiple files + 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_EXEC, // Execute path SYS_EXIT, // Exit current process SYS_BOOT, // Boot functions (e.g. reboot/shutdown) @@ -68,7 +70,6 @@ res read(const char *path, void *buf, u32 offset, u32 count) NONNULL; res write(const char *path, const void *buf, u32 offset, u32 count) NONNULL; res ioctl(const char *path, ...) NONNULL; res stat(const char *path, struct stat *buf) NONNULL; -res poll(const char **files) NONNULL; res exec(const char *path, ...) ATTR((nonnull(1))) SENTINEL; res yield(void); res boot(u32 cmd); |