diff options
author | dzwdz | 2021-11-16 20:28:00 +0100 |
---|---|---|
committer | dzwdz | 2021-11-16 20:28:00 +0100 |
commit | fefca619c1b98f9fe27cfff0c32f39b751ee6a60 (patch) | |
tree | d0c353cf5d377184e39e2dc7b3903dafa6eabb06 /src/shared | |
parent | 25e7ee0a22e5e28dce8bd88aef61fc7894bfbe7b (diff) |
kernel/vfs: add a capacity field to fs_wait_response
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/syscalls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/syscalls.h b/src/shared/syscalls.h index f136ed2..8ec1a41 100644 --- a/src/shared/syscalls.h +++ b/src/shared/syscalls.h @@ -51,6 +51,7 @@ handle_t _syscall_fs_fork2(void); struct fs_wait_response { int len; // how much was put in *buf + int capacity; // how much output can be accepted by the caller int id; // file id (returned by the open handler, passed to other calls) int offset; }; |