summaryrefslogtreecommitdiff
path: root/src/kernel/proc.h
diff options
context:
space:
mode:
authordzwdz2022-07-09 20:47:13 +0200
committerdzwdz2022-07-09 20:47:13 +0200
commitfff36661c92f30685e2d83825a11b67ad8921a0e (patch)
tree7711025c8ad988e48a5925c546151e6c1cfa96fe /src/kernel/proc.h
parentfcfb57c12ce4544017098092a66f8427584c1879 (diff)
kernel/pipes: process queueing
Diffstat (limited to 'src/kernel/proc.h')
-rw-r--r--src/kernel/proc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/kernel/proc.h b/src/kernel/proc.h
index 20585bc..c400f7d 100644
--- a/src/kernel/proc.h
+++ b/src/kernel/proc.h
@@ -47,6 +47,7 @@ struct process {
struct handle *pipe;
char __user *buf;
size_t len;
+ struct process *next;
} waits4pipe;
};
struct vfs_request *handled_req;