diff options
author | dyson <dyson@FreeBSD.org> | 1997-08-05 22:24:31 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1997-08-05 22:24:31 +0000 |
commit | 2649bd0b26a3cee5b9f258a754ccbd0e1990d37e (patch) | |
tree | 5af8dfda9d99163ca905749f84dcc2cc6750fbd2 /sys/kern/sys_pipe.c | |
parent | 55205b3be5c7c439805fe93670d300565bac90dc (diff) | |
download | FreeBSD-src-2649bd0b26a3cee5b9f258a754ccbd0e1990d37e.zip FreeBSD-src-2649bd0b26a3cee5b9f258a754ccbd0e1990d37e.tar.gz |
Another attempt at cleaning up the new memory allocator.
Diffstat (limited to 'sys/kern/sys_pipe.c')
-rw-r--r-- | sys/kern/sys_pipe.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c index 2efb09f..cbf180f 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); |