[dovecot-cvs] dovecot/src/lib data-stack.c,1.9,1.10

cras at procontrol.fi cras at procontrol.fi
Wed Dec 18 03:31:55 EET 2002


Update of /home/cvs/dovecot/src/lib
In directory danu:/tmp/cvs-serv9581/lib

Modified Files:
	data-stack.c 
Log Message:
Use a bit larger initial data stack size when DEBUG is set - current one is
too small for message searching.



Index: data-stack.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib/data-stack.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- data-stack.c	8 Dec 2002 05:23:07 -0000	1.9
+++ data-stack.c	18 Dec 2002 01:31:53 -0000	1.10
@@ -42,7 +42,7 @@
 /* Initial stack size - this should be kept in a size that doesn't exceed
    in a normal use to avoid extra malloc()ing. */
 #ifdef DEBUG
-#  define INITIAL_STACK_SIZE (1024*8)
+#  define INITIAL_STACK_SIZE (1024*10)
 #else
 #  define INITIAL_STACK_SIZE (1024*32)
 #endif




More information about the dovecot-cvs mailing list