diff options
author | Robert Morris <[email protected]> | 2019-07-24 13:33:43 -0400 |
---|---|---|
committer | Robert Morris <[email protected]> | 2019-07-24 13:33:43 -0400 |
commit | a77287e9244ae5dac7060c0b8817bc195325af0c (patch) | |
tree | fbf856ce361a9bc75abe4c484ecaff324607dd71 /kernel/pipe.c | |
parent | b4f89bb5290cff5926e5a735487b024f8314e028 (diff) | |
download | xv6-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.c | 2 |
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) { |