diff options
author | dzwdz | 2022-07-07 19:24:42 +0200 |
---|---|---|
committer | dzwdz | 2022-07-07 19:24:42 +0200 |
commit | bbdacaddcc25d1d137a0bb0781eba603641baa92 (patch) | |
tree | 898ddd186d8e1def04e818b192a8c9b8d2721504 /src/shared | |
parent | 8dc3d7df4c73b320fa84b2e871732276a7c6e20f (diff) |
kernel/vfs: delegate support in _syscall_fs_respond!
this is big in terms of speed, it avoids a lot of unnecessary context
switches
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 bd26b43..b9be23d 100644 --- a/src/shared/syscalls.h +++ b/src/shared/syscalls.h @@ -5,6 +5,7 @@ #define FORK_NOREAP 1 #define FORK_NEWFS 2 #define OPEN_CREATE 1 +#define FSR_DELEGATE 1 enum { // idc about stable syscall numbers just yet |