diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-07-28 13:04:30 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-07-28 13:04:30 +0000 |
commit | e64dc6209f7f131c946124e22a34459722b6b331 (patch) | |
tree | 47d8b0398765affae5700b237be261a87de3029b | |
parent | 106a2ad5448eb38ee40861e84056db7d24089147 (diff) |
Dont force htab size to be fixed size, allow system to define size.
-rw-r--r-- | sys/arch/powerpc/include/param.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/powerpc/include/param.h b/sys/arch/powerpc/include/param.h index 429833a3db0..efa25aad46f 100644 --- a/sys/arch/powerpc/include/param.h +++ b/sys/arch/powerpc/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.9 2000/02/22 19:27:57 deraadt Exp $ */ +/* $OpenBSD: param.h,v 1.10 2000/07/28 13:04:29 rahnds Exp $ */ /* $NetBSD: param.h,v 1.1 1996/09/30 16:34:28 ws Exp $ */ /*- @@ -138,9 +138,12 @@ /* * Some system constants */ +/* do not define HTABENTS, allow system size to determine # entries */ +#if 0 #ifndef HTABENTS #define HTABENTS 1024 /* Number of hashslots in HTAB */ #endif +#endif #ifndef NPMAPS #define NPMAPS 32768 /* Number of pmaps in system */ #endif |