diff options
author | msmith <msmith@FreeBSD.org> | 1998-10-16 19:23:37 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 1998-10-16 19:23:37 +0000 |
commit | 2fb2fc3d2aac6c5e61c0f89e0510cf60b05ee431 (patch) | |
tree | 8c04edc7fc736359dbea599525aaa668c1f78c3b /lib | |
parent | 4bdfdd372a5deb973b26cd56bf26b8059693385a (diff) | |
download | FreeBSD-src-2fb2fc3d2aac6c5e61c0f89e0510cf60b05ee431.zip FreeBSD-src-2fb2fc3d2aac6c5e61c0f89e0510cf60b05ee431.tar.gz |
Reduce the sbrk() increment from 64K to 4K. There's not much room on the
Alpha, and wasting potentially 64K-4 bytes of RAM just isn't an option.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libstand/zalloc_defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libstand/zalloc_defs.h b/lib/libstand/zalloc_defs.h index d3f46da..911bb2e 100644 --- a/lib/libstand/zalloc_defs.h +++ b/lib/libstand/zalloc_defs.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: zalloc_defs.h,v 1.2 1998/09/26 10:48:50 dfr Exp $ + * $Id: zalloc_defs.h,v 1.3 1998/10/01 17:35:08 msmith Exp $ */ /* @@ -63,7 +63,7 @@ typedef long saddr_t; /* signed int same size as pointer */ * block extension for sbrk() */ -#define BLKEXTEND (64 * 1024) +#define BLKEXTEND (4 * 1024) #define BLKEXTENDMASK (BLKEXTEND - 1) /* |