diff options
author | dzwdz | 2022-10-08 20:28:19 +0200 |
---|---|---|
committer | dzwdz | 2022-10-08 23:45:20 +0200 |
commit | b3f0606f7d206f355647f5c266aadea137e93429 (patch) | |
tree | 3b7b0c54d6e7d13d84bdb8c5c8ae89a5c8e1043a /src/kernel/pipe.h | |
parent | 06affde06e2b1d3fe9c7c3fa60f5662e9957534d (diff) |
kernel/handle: reuse ->writeable/->readable for pipes
Diffstat (limited to 'src/kernel/pipe.h')
-rw-r--r-- | src/kernel/pipe.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/kernel/pipe.h b/src/kernel/pipe.h index 2a90738..bcdfb86 100644 --- a/src/kernel/pipe.h +++ b/src/kernel/pipe.h @@ -3,7 +3,6 @@ #include <stdbool.h> /* eventually transitions to PS_RUNNING */ -void pipe_joinqueue(struct handle *h, bool wants_write, - struct process *proc, void __user *pbuf, size_t pbuflen); +void pipe_joinqueue(struct handle *h, struct process *proc, void __user *pbuf, size_t pbuflen); void pipe_invalidate_end(struct handle *h); |