about summary refs log tree commit diff
path: root/Src/mem.c
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-01-17 09:34:45 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-01-17 09:34:45 +0000
commit3250a1932b5984b8801b62f81ab8413dd347bc5f (patch)
tree4c511bc8b1206947a3c296070fd93be3162d65b1 /Src/mem.c
parent5916a06121fe5d21f4ba73305e10f6686c77e28e (diff)
downloadzsh-3250a1932b5984b8801b62f81ab8413dd347bc5f.tar.gz
zsh-3250a1932b5984b8801b62f81ab8413dd347bc5f.tar.xz
zsh-3250a1932b5984b8801b62f81ab8413dd347bc5f.zip
zsh-workers/9329
Diffstat (limited to 'Src/mem.c')
-rw-r--r--Src/mem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/mem.c b/Src/mem.c
index 372c1e467..dcd6352ca 100644
--- a/Src/mem.c
+++ b/Src/mem.c
@@ -689,8 +689,8 @@ struct m_hdr {
  *         back; note that this has to be less than M_FREE
  * M_ALLOC is the number of extra bytes to request from the system */
 
-#define M_FREE  65536
-#define M_KEEP  32768
+#define M_FREE  32768
+#define M_KEEP  16384
 #define M_ALLOC M_KEEP
 
 /* a pointer to the last free block, a pointer to the free list (the blocks
@@ -737,7 +737,7 @@ static char *m_high, *m_low;
 #define M_BSLEN(S) (((S) - sizeof(struct m_shdr *) -  \
 		     sizeof(zlong) - sizeof(struct m_hdr *)) / M_SNUM)
 #endif
-#define M_NSMALL   13
+#define M_NSMALL    8
 
 static struct m_hdr *m_small[M_NSMALL];