aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/inc/fs.h')
-rw-r--r--kernel/inc/fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/inc/fs.h b/kernel/inc/fs.h
index b6c30a2..1a78072 100644
--- a/kernel/inc/fs.h
+++ b/kernel/inc/fs.h
@@ -47,7 +47,7 @@ struct vfs {
res (*ioctl)(const char *path, u32 request, void *arg1, void *arg2, void *arg3,
struct device *dev) ATTR((nonnull(1, 6)));
res (*stat)(const char *path, struct stat *buf, struct device *dev) NONNULL;
- res (*wait)(const char *path, u32 func_ptr, struct device *dev) NONNULL;
+ res (*block)(const char *path, u32 func_ptr, struct device *dev) NONNULL;
res (*ready)(const char *path, struct device *dev) NONNULL;
res (*perm)(const char *path, enum vfs_perm perm, struct device *dev) NONNULL;
};
@@ -68,7 +68,7 @@ res vfs_read(const char *path, void *buf, u32 offset, u32 count) NONNULL;
res vfs_write(const char *path, void *buf, u32 offset, u32 count) NONNULL;
res vfs_ioctl(const char *path, u32 request, void *arg1, void *arg2, void *arg3) ATTR((nonnull(1)));
res vfs_stat(const char *path, struct stat *buf) NONNULL;
-res vfs_wait(const char *path, u32 func_ptr) NONNULL;
+res vfs_block(const char *path, u32 func_ptr) NONNULL;
res vfs_poll(const char **files) NONNULL;
res vfs_ready(const char *path) NONNULL;