~ chicken-core (chicken-5) 50dc82d0e1eb9594c18277cf175678c73c01fb9a
commit 50dc82d0e1eb9594c18277cf175678c73c01fb9a
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Mon Jul 20 22:51:35 2015 +0200
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Mon Jul 20 22:51:35 2015 +0200
increased tempstack-size, as apply + gc-related av-save both need it.
diff --git a/runtime.c b/runtime.c
index 514dd005..1d794946 100644
--- a/runtime.c
+++ b/runtime.c
@@ -151,7 +151,7 @@ static C_TLS int timezone;
#define WEAK_COUNTER_MASK 3
#define WEAK_COUNTER_MAX 2
-#define TEMPORARY_STACK_SIZE 2048
+#define TEMPORARY_STACK_SIZE 4096
#define STRING_BUFFER_SIZE 4096
#define DEFAULT_MUTATION_STACK_SIZE 1024
Trap