aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorMarvin Borner2021-04-13 22:09:23 +0200
committerMarvin Borner2021-04-13 22:09:23 +0200
commit9ded3a2bde80eede5fd887812d70c2f834b53c84 (patch)
tree932a90608c5f30d38b810dc4fe9264cc43c2da68 /libs
parentf96b8ad1ee83dec08ae636e179cc48019ca50b12 (diff)
Started IO dev manager
Diffstat (limited to 'libs')
-rw-r--r--libs/libc/crt/crt0.c2
-rw-r--r--libs/libc/inc/rand.h (renamed from libs/libc/inc/random.h)0
-rw-r--r--libs/libc/inc/sys.h9
-rw-r--r--libs/libc/random.c2
-rw-r--r--libs/libc/sys.c5
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;