summaryrefslogtreecommitdiff
path: root/kernel/pipe.c
diff options
context:
space:
mode:
authorRobert Morris <[email protected]>2019-07-24 13:33:43 -0400
committerRobert Morris <[email protected]>2019-07-24 13:33:43 -0400
commita77287e9244ae5dac7060c0b8817bc195325af0c (patch)
treefbf856ce361a9bc75abe4c484ecaff324607dd71 /kernel/pipe.c
parentb4f89bb5290cff5926e5a735487b024f8314e028 (diff)
downloadxv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.tar.gz
xv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.tar.bz2
xv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.zip
no more PAGEBREAK
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)
{