summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2002-08-09 11:10:34 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2002-08-09 11:10:34 +0000
commitc9f1e22c09b9875dc58e65acda019827b04036f5 (patch)
tree2667cb0fea5e09e8367f0982b290afbbabcf8f13
parentc9b77a613c84fefffe7cb824c72419172ed7ae46 (diff)
Reduit la taille de pile minimum a 1.5 Mo. Sur PC Linux, 1 Mo suffit pour make opt.opt (PR#1313)
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5095 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--tools/checkstack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checkstack.c b/tools/checkstack.c
index 23f0a922e..14b5726fb 100644
--- a/tools/checkstack.c
+++ b/tools/checkstack.c
@@ -18,7 +18,7 @@
#include <sys/time.h>
#include <sys/resource.h>
-#define MINSTACKBYTES (512 * 1024 * sizeof (long))
+#define MINSTACKBYTES (384 * 1024 * sizeof (long))
int main(int argc, char ** argv)
{