From: Andy Wingo Date: Fri, 24 Jul 2009 10:05:54 +0000 (+0200) Subject: increase default stack size to 64 kilowords X-Git-Url: http://git.hcoop.net/bpt/guile.git/commitdiff_plain/51e9ba2f38675ce5fd161b7df15470abaaf60e0e 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. --- 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"