From 95f5cf33492338e65308b79865714cebf11f3d5d Mon Sep 17 00:00:00 2001 From: Mike Smith Date: Fri, 16 Oct 1998 19:23:37 +0000 Subject: [PATCH] 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. --- lib/libstand/zalloc_defs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libstand/zalloc_defs.h b/lib/libstand/zalloc_defs.h index d3f46da410aa..911bb2e3ed65 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) /*