Implementation mising features in lock_and_signal for Win32. Also lowered the minimum stack size to get the pfib benchmark to run without exhausting its address space on Windows.

This commit is contained in:
Eric Holk
2011-06-23 12:22:45 -07:00
committed by Graydon Hoare
parent 681c063ec0
commit 022ebc198b
5 changed files with 11 additions and 10 deletions

View File

@@ -14,9 +14,9 @@
// FIXME (issue #151): This should be 0x300; the change here is for
// practicality's sake until stack growth is working.
static size_t const min_stk_bytes = 0x300000;
// static size_t const min_stk_bytes = 0x10000;
//static size_t const min_stk_bytes = 0x300000;
//static size_t const min_stk_bytes = 0x10000;
static size_t const min_stk_bytes = 0x100000;
// Task stack segments. Heap allocated and chained together.