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

Unified Diff: vm/thread_win.cc

Issue 8673002: - Refactor the isolate callback mechanism to also include creation of the (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: '' Created 9 years, 1 month 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 | « vm/thread_macos.cc ('k') | vm/unit_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/thread_win.cc
===================================================================
--- vm/thread_win.cc (revision 1955)
+++ vm/thread_win.cc (working copy)
@@ -55,7 +55,7 @@
ThreadStartData* start_data = new ThreadStartData(function, parameter, this);
uint32_t tid;
data_.thread_handle_ =
- _beginthreadex(NULL, 32 * KB, ThreadEntry, start_data, 0, &tid);
+ _beginthreadex(NULL, 64 * KB, ThreadEntry, start_data, 0, &tid);
if (data_.thread_handle_ == -1) {
FATAL("Thread creation failed");
}
« no previous file with comments | « vm/thread_macos.cc ('k') | vm/unit_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698