From 51e9ba2f38675ce5fd161b7df15470abaaf60e0e Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Fri, 24 Jul 2009 12:05:54 +0200 Subject: [PATCH] increase default stack size to 64 kilowords * libguile/vm.c (VM_DEFAULT_STACK_SIZE): Increase to 64 kilowords. Really, we should simply add overflow handlers, but in the meantime, this will do. --- libguile/vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/vm.c b/libguile/vm.c index 957baf6fe..41eacd79f 100644 --- a/libguile/vm.c +++ b/libguile/vm.c @@ -325,7 +325,7 @@ resolve_variable (SCM what, SCM program_module) } -#define VM_DEFAULT_STACK_SIZE (16 * 1024) +#define VM_DEFAULT_STACK_SIZE (64 * 1024) #define VM_NAME vm_regular_engine #define FUNC_NAME "vm-regular-engine"