increase default stack size to 64 kilowords
authorAndy Wingo <wingo@pobox.com>
Fri, 24 Jul 2009 10:05:54 +0000 (12:05 +0200)
committerAndy Wingo <wingo@pobox.com>
Fri, 24 Jul 2009 10:05:54 +0000 (12:05 +0200)
* 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

index 957baf6..41eacd7 100644 (file)
@@ -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"