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

Unified Diff: src/flag-definitions.h

Issue 10006010: Adjust stack limit again to avoid overflow on 64 bit windows (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Correct diff Created 8 years, 8 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 | « src/bootstrapper.cc ('k') | test/mjsunit/regress/regress-119429.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index c661a44e6e0a21dce13faa997b15be4f3076fbfd..75697a89068917730f3883ce174c490c2f57abf8 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -312,7 +312,7 @@ DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting")
// execution.cc
// Slightly less than 1MB on 64-bit, since Windows' default stack size for
// the main execution thread is 1MB for both 32 and 64-bit.
-DEFINE_int(stack_size, kPointerSize * 125,
+DEFINE_int(stack_size, kPointerSize * 123,
"default size of stack region v8 is allowed to use (in kBytes)")
// frames.cc
« no previous file with comments | « src/bootstrapper.cc ('k') | test/mjsunit/regress/regress-119429.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698