diff options
Diffstat (limited to 'src/kernel/syscall/actions/sys_write.c')
-rw-r--r-- | src/kernel/syscall/actions/sys_write.c | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/src/kernel/syscall/actions/sys_write.c b/src/kernel/syscall/actions/sys_write.c index 28a5929..b9b30f3 100644 --- a/src/kernel/syscall/actions/sys_write.c +++ b/src/kernel/syscall/actions/sys_write.c @@ -1,23 +1,7 @@ #include <stdint.h> -#include <kernel/fs/vfs.h> -#include <kernel/fs/ext2.h> -#include <kernel/lib/stdlib.h> -#include <kernel/memory/alloc.h> -#include <kernel/system.h> +#include <kernel/fs/fs.h> -uint32_t sys_write(char *path, uint32_t offset, uint32_t count, char *buf) +uint32_t sys_write(char *path, uint32_t offset, uint32_t count, uint8_t *buf) { - struct fs_node *node = (struct fs_node *)umalloc(sizeof(struct fs_node)); - strcpy(node->name, path); - fs_open(node); - if (node->inode != 0) { - uint32_t size = ((struct ext2_file *)node->impl)->inode.size; - fs_write(node, 0, size, buf); - buf[size - 1] = '\0'; - fs_close(node); - return size; - } else { - fs_close(node); - return -1; - } + return write(path, offset, count, buf); }
\ No newline at end of file |