aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/sys_pipe.c
diff options
context:
space:
mode:
authorEivind Eklund <eivind@FreeBSD.org>1998-02-09 06:11:36 +0000
committerEivind Eklund <eivind@FreeBSD.org>1998-02-09 06:11:36 +0000
commit303b270b0a55fd0dc287afb82267317ca7826a7b (patch)
tree82f7f30caed0917853b890f61d2857d27c2e02e3 /sys/kern/sys_pipe.c
parent645c4be38a40ae297fc27d00d66da5599fe60eb6 (diff)
downloadsrc-303b270b0a55fd0dc287afb82267317ca7826a7b.tar.gz
src-303b270b0a55fd0dc287afb82267317ca7826a7b.zip
Staticize.
Notes
Notes: svn path=/head/; revision=33181
Diffstat (limited to 'sys/kern/sys_pipe.c')
-rw-r--r--sys/kern/sys_pipe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c
index 3565e95f2fee..8c008a204b75 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.37 1998/02/04 22:32:35 eivind Exp $
+ * $Id: sys_pipe.c,v 1.38 1998/02/06 12:13:26 eivind Exp $
*/
/*
@@ -122,7 +122,7 @@ static struct fileops pipeops =
* Limit the number of "big" pipes
*/
#define LIMITBIGPIPES 32
-int nbigpipe;
+static int nbigpipe;
static int amountpipekva;
@@ -139,7 +139,7 @@ static void pipe_clone_write_buffer __P((struct pipe *wpipe));
#endif
static void pipespace __P((struct pipe *cpipe));
-vm_zone_t pipe_zone;
+static vm_zone_t pipe_zone;
/*
* The pipe system call for the DTYPE_PIPE type of pipes