diff options
author | dzwdz | 2021-09-12 13:26:29 +0200 |
---|---|---|
committer | dzwdz | 2021-09-12 13:26:29 +0200 |
commit | a66ce8238c08703bd1066a8094d6ab537e82b20e (patch) | |
tree | 80754d2a54fd5797b87cf9f6596f3a78a29b6e56 /src/shared/syscalls.h | |
parent | 625ae265cbabe76bd272e9e8f0f637635af64b23 (diff) |
implement most of fs_wait
awaited_req is a garbage name but i couldn't come up with a better one.
i also have no idea how to handle all the failure states
Diffstat (limited to 'src/shared/syscalls.h')
-rw-r--r-- | src/shared/syscalls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/syscalls.h b/src/shared/syscalls.h index 2c6a278..a746ade 100644 --- a/src/shared/syscalls.h +++ b/src/shared/syscalls.h @@ -52,4 +52,4 @@ int _syscall_close(handle_t); */ handle_t _syscall_fs_create(handle_t __user *back); -int _syscall_fs_wait(handle_t back, void __user *info); +int _syscall_fs_wait(handle_t back, char __user *buf, int __user *len); |