summaryrefslogtreecommitdiff
path: root/kernel/pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/pipe.c')
-rw-r--r--kernel/pipe.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/pipe.c b/kernel/pipe.c
index 2fcb2ee..c3a8acf 100644
--- a/kernel/pipe.c
+++ b/kernel/pipe.c
@@ -45,7 +45,6 @@ pipealloc(struct file **f0, struct file **f1)
(*f1)->pipe = pi;
return 0;
-//PAGEBREAK: 20
bad:
if(pi)
kfree((char*)pi);
@@ -74,7 +73,6 @@ pipeclose(struct pipe *pi, int writable)
release(&pi->lock);
}
-//PAGEBREAK: 40
int
pipewrite(struct pipe *pi, uint64 addr, int n)
{