summaryrefslogtreecommitdiff
path: root/pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'pipe.c')
-rw-r--r--pipe.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pipe.c b/pipe.c
index 737c75a..43f623a 100644
--- a/pipe.c
+++ b/pipe.c
@@ -43,6 +43,7 @@ pipealloc(struct file **f0, struct file **f1)
(*f1)->pipe = p;
return 0;
+//PAGEBREAK: 20
bad:
if(p)
kfree((char*)p, PAGE);
@@ -74,7 +75,7 @@ pipeclose(struct pipe *p, int writable)
kfree((char*)p, PAGE);
}
-//PAGEBREAK: 20
+//PAGEBREAK: 30
int
pipewrite(struct pipe *p, char *addr, int n)
{