diff options
author | Marvin Borner | 2021-04-02 01:27:36 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-02 01:27:36 +0200 |
commit | 192b756a6999a0637fcc72f3fd2f9f7099e32543 (patch) | |
tree | f936c42baeb54c8aebd0fc0ac0cb56f9dcf3c96c /kernel/inc/fs.h | |
parent | afa00abb2b68205bee539d7947130d6b1b1ec6e9 (diff) |
Huge scheduling/proc-management improvements
Diffstat (limited to 'kernel/inc/fs.h')
-rw-r--r-- | kernel/inc/fs.h | 4 |
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; |