Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Unified Diff: runtime/platform/thread_macos.cc

Issue 10389090: Increase thread stack size on Mac in debug mode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/platform/thread_macos.cc
diff --git a/runtime/platform/thread_macos.cc b/runtime/platform/thread_macos.cc
index 28620d484b5b899e8417aeafab332ccfe75f7c9c..f34efa569c23041aa5c36341c8f46f91c7e1975f 100644
--- a/runtime/platform/thread_macos.cc
+++ b/runtime/platform/thread_macos.cc
@@ -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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698