1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 21:40:33 +02:00

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.
This commit is contained in:
Andy Wingo 2009-07-24 12:05:54 +02:00
parent 80545853d5
commit 51e9ba2f38

View 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"