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

Unified Diff: runtime/platform/thread_macos.cc

Issue 10558013: For now set the stack buffer size to 16k (we need to compute this during thread start and store it … (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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 | « runtime/platform/thread_linux.cc ('k') | runtime/platform/thread_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/platform/thread_macos.cc
===================================================================
--- runtime/platform/thread_macos.cc (revision 8738)
+++ runtime/platform/thread_macos.cc (working copy)
@@ -114,7 +114,7 @@
intptr_t Thread::GetMaxStackSize() {
- const int kStackSize = (1024 * KB);
+ const int kStackSize = (512 * KB);
return kStackSize;
}
« no previous file with comments | « runtime/platform/thread_linux.cc ('k') | runtime/platform/thread_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698