From 3b4c262fdc3e78f259766bf9cb54d2d6837cf295 Mon Sep 17 00:00:00 2001 From: Oliver Kowalke Date: Thu, 16 Jan 2014 21:44:51 +0100 Subject: [PATCH] adjust stacksize to 64kb required by Windows --- performance/performance_create_prealloc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/performance/performance_create_prealloc.cpp b/performance/performance_create_prealloc.cpp index 094b39f..2e2382f 100644 --- a/performance/performance_create_prealloc.cpp +++ b/performance/performance_create_prealloc.cpp @@ -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;