diff options
Diffstat (limited to 'libs')
-rw-r--r-- | libs/libc/crt/crt0.c | 2 | ||||
-rw-r--r-- | libs/libc/inc/rand.h (renamed from libs/libc/inc/random.h) | 0 | ||||
-rw-r--r-- | libs/libc/inc/sys.h | 9 | ||||
-rw-r--r-- | libs/libc/random.c | 2 | ||||
-rw-r--r-- | libs/libc/sys.c | 5 |
5 files changed, 7 insertions, 11 deletions
diff --git a/libs/libc/crt/crt0.c b/libs/libc/crt/crt0.c index d264d61..03e569c 100644 --- a/libs/libc/crt/crt0.c +++ b/libs/libc/crt/crt0.c @@ -2,7 +2,7 @@ #include <assert.h> #include <def.h> -#include <random.h> +#include <rand.h> #include <sys.h> #ifdef USER diff --git a/libs/libc/inc/random.h b/libs/libc/inc/rand.h index 1b41df5..1b41df5 100644 --- a/libs/libc/inc/random.h +++ b/libs/libc/inc/rand.h 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); diff --git a/libs/libc/random.c b/libs/libc/random.c index 2cd7f93..268a21f 100644 --- a/libs/libc/random.c +++ b/libs/libc/random.c @@ -2,7 +2,7 @@ #include <def.h> #include <mem.h> -#include <random.h> +#include <rand.h> #ifdef KERNEL #include <cpu.h> diff --git a/libs/libc/sys.c b/libs/libc/sys.c index 70dcc97..7563fb4 100644 --- a/libs/libc/sys.c +++ b/libs/libc/sys.c @@ -128,11 +128,6 @@ res stat(const char *path, struct stat *buf) return sys2(SYS_STAT, (int)path, (int)buf); } -res poll(const char **files) -{ - return sys1(SYS_POLL, (int)files); -} - res exec(const char *path, ...) { va_list ap; |