summaryrefslogtreecommitdiff
path: root/sys/kern/sys_pipe.c
diff options
context:
space:
mode:
authorJohn Dyson <dyson@FreeBSD.org>1997-08-05 22:24:31 +0000
committerJohn Dyson <dyson@FreeBSD.org>1997-08-05 22:24:31 +0000
commit0d65e566b9205b394757258c5ffc34d8b64e0998 (patch)
tree15a797f5e4c2280a999b7e900fa3f40ce4b824e2 /sys/kern/sys_pipe.c
parentb79933ebfae10dd578fbb7bf77dfe50d766ff7c8 (diff)
Notes
Diffstat (limited to 'sys/kern/sys_pipe.c')
-rw-r--r--sys/kern/sys_pipe.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c
index 2efb09faa868..cbf180f55a3f 100644
--- a/sys/kern/sys_pipe.c
+++ b/sys/kern/sys_pipe.c
@@ -16,7 +16,7 @@
* 4. Modifications may be freely made to this file if the above conditions
* are met.
*
- * $Id: sys_pipe.c,v 1.29 1997/08/05 00:01:26 dyson Exp $
+ * $Id: sys_pipe.c,v 1.30 1997/08/05 00:05:00 dyson Exp $
*/
/*
@@ -166,8 +166,7 @@ pipe(p, uap, retval)
int fd, error;
if (pipe_zone == NULL)
- pipe_zone = zinit("PIPE", sizeof (struct pipe), 0,
- ZONE_WAIT, 4);
+ pipe_zone = zinit("PIPE", sizeof (struct pipe), 0, 0, 4);
rpipe = zalloc( pipe_zone);
pipeinit(rpipe);