Author: [email protected]
Date: Tue Jan 27 10:57:42 2009
New Revision: 1177
Modified:
trunk/src/api.cc
trunk/src/regexp-stack.h
Log:
Pushing change to maximum RegExp backtracking stack. Updating to version
0.4.9.1.
Modified: trunk/src/api.cc
==============================================================================
--- trunk/src/api.cc (original)
+++ trunk/src/api.cc Tue Jan 27 10:57:42 2009
@@ -2184,7 +2184,7 @@
const char* v8::V8::GetVersion() {
- return "0.4.9";
+ return "0.4.9.1";
}
Modified: trunk/src/regexp-stack.h
==============================================================================
--- trunk/src/regexp-stack.h (original)
+++ trunk/src/regexp-stack.h Tue Jan 27 10:57:42 2009
@@ -79,7 +79,7 @@
static const size_t kMinimumStackSize = 1 * KB;
// Maximal size of allocated stack area.
- static const size_t kMaximumStackSize = 256 * KB;
+ static const size_t kMaximumStackSize = 64 * MB;
// Structure holding the allocated memory, size and limit.
struct ThreadLocal {
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---