Increase thread stack size on Mac in debug mode.

After changing dart:io to use Futures the debug Mac build hit the stack
limit during snapshot reading. Landing this to unbreak the build.

R=sgjesse@google.com,asiva@google.com,iposva@google.com
BUG=
TEST=

Review URL: https://chromiumcodereview.appspot.com//10389090

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@7532 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
ager@google.com 2012-05-11 07:01:24 +00:00
parent 0a181379c7
commit 333b817631

View file

@ -72,7 +72,7 @@ int Thread::Start(ThreadStartFunction function, uword parameter) {
RETURN_ON_PTHREAD_FAILURE(result);
#ifdef DEBUG
const int kStackSize = (256 * KB);
const int kStackSize = (512 * KB);
#else
const int kStackSize = (128 * KB);
#endif