summaryrefslogtreecommitdiff
path: root/sys/kern/kern_subr.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1997-10-10 18:14:23 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1997-10-10 18:14:23 +0000
commit60a513e9421ccaa8776019e24e8a56555dfaefe7 (patch)
treeab81b2cbaad011f6ea7b12d9275d9f74b19dd12a /sys/kern/kern_subr.c
parent631821df682a658cb9950a47e8856c51f88f36a9 (diff)
Notes
Diffstat (limited to 'sys/kern/kern_subr.c')
-rw-r--r--sys/kern/kern_subr.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/kern/kern_subr.c b/sys/kern/kern_subr.c
index 85965701a8a0..ba6e43b9bcea 100644
--- a/sys/kern/kern_subr.c
+++ b/sys/kern/kern_subr.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_subr.c 8.3 (Berkeley) 1/21/94
- * $Id: kern_subr.c,v 1.11 1997/05/28 00:47:27 alex Exp $
+ * $Id: kern_subr.c,v 1.12 1997/09/02 20:05:42 bde Exp $
*/
#include <sys/param.h>
@@ -198,7 +198,8 @@ again:
*/
void *
hashinit(elements, type, hashmask)
- int elements, type;
+ int elements;
+ struct malloc_type *type;
u_long *hashmask;
{
long hashsize;
@@ -227,7 +228,8 @@ static int primes[] = { 1, 13, 31, 61, 127, 251, 509, 761, 1021, 1531, 2039,
*/
void *
phashinit(elements, type, nentries)
- int elements, type;
+ int elements;
+ struct malloc_type *type;
u_long *nentries;
{
long hashsize;