diff options
author | dillon <dillon@FreeBSD.org> | 2001-07-04 17:11:03 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 2001-07-04 17:11:03 +0000 |
commit | 8ff7790b1e465b269c4f7e70de474efa728d230f (patch) | |
tree | 89b8a19eb498f54f54f3cc4477f44a70cd1f00c5 /sys/kern/sys_pipe.c | |
parent | e028603b7e3e4fb35cdf00aab533f3965f4a13cc (diff) | |
download | FreeBSD-src-8ff7790b1e465b269c4f7e70de474efa728d230f.zip FreeBSD-src-8ff7790b1e465b269c4f7e70de474efa728d230f.tar.gz |
cleanup: GIANT macros, rename DEPRECIATE to DEPRECATE
Move p_giant_optional to proc zero'd section
Remove (old) XXX zfree comment in pipe code
Diffstat (limited to 'sys/kern/sys_pipe.c')
-rw-r--r-- | sys/kern/sys_pipe.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c index 5ee4f5c..dcc57d8 100644 --- a/sys/kern/sys_pipe.c +++ b/sys/kern/sys_pipe.c @@ -1227,9 +1227,6 @@ pipeclose(cpipe) * free resources */ pipe_free_kmem(cpipe); - /* XXX: erm, doesn't zalloc already have its own locks and - * not need the giant vm lock? - */ zfree(pipe_zone, cpipe); } } |