From fefca619c1b98f9fe27cfff0c32f39b751ee6a60 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Tue, 16 Nov 2021 20:28:00 +0100 Subject: kernel/vfs: add a capacity field to fs_wait_response --- src/shared/syscalls.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/shared') 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; }; -- cgit v1.2.3