adjust stacksize to 64kb required by Windows

This commit is contained in:
Oliver Kowalke
2014-01-16 21:44:51 +01:00
parent f86d9c38c6
commit 3b4c262fdc

View File

@@ -18,7 +18,7 @@
#include "cycle.hpp"
#include "preallocated_stack_allocator.hpp"
typedef preallocated_stack_allocator< 8 * 1024 > stack_allocator;
typedef preallocated_stack_allocator< 64 * 1024 > stack_allocator;
boost::coroutines::flag_fpu_t preserve_fpu = boost::coroutines::fpu_not_preserved;
boost::uint64_t jobs = 1000;