diff options
Diffstat (limited to 'src/kernel/include/vfs.h')
-rw-r--r-- | src/kernel/include/vfs.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/include/vfs.h b/src/kernel/include/vfs.h index c22ec9a..888c0bc 100644 --- a/src/kernel/include/vfs.h +++ b/src/kernel/include/vfs.h @@ -81,11 +81,11 @@ typedef struct fs_handle { typedef struct fs_node_ops { bool (*open)(fs_node_ptr n, int mode); - size_t (*read)(fs_handle_t *f, size_t offset, size_t len, char* buf); - size_t (*write)(fs_handle_t *f, size_t offset, size_t len, const char* buf); - bool (*readdir)(fs_handle_t *f, size_t ent_no, dirent_t *d); - int (*poll)(fs_handle_t *f, void** out_wait_obj); - void (*close)(fs_handle_t *f); + size_t (*read)(fs_handle_t *h, size_t offset, size_t len, char* buf); + size_t (*write)(fs_handle_t *h, size_t offset, size_t len, const char* buf); + bool (*readdir)(fs_handle_t *h, size_t ent_no, dirent_t *d); + int (*poll)(fs_handle_t *h, void** out_wait_obj); + void (*close)(fs_handle_t *h); bool (*stat)(fs_node_ptr n, stat_t *st); int (*ioctl)(fs_node_ptr n, int command, void* data); |