Index: src/api.cc |
=================================================================== |
--- src/api.cc (revision 5846) |
+++ src/api.cc (working copy) |
@@ -115,7 +115,6 @@ |
} |
- |
static FatalErrorCallback& GetFatalErrorHandler() { |
if (exception_behavior == NULL) { |
exception_behavior = DefaultFatalErrorHandler; |
@@ -124,7 +123,11 @@ |
} |
+void i::FatalProcessOutOfMemory(const char* location) { |
+ i::V8::FatalProcessOutOfMemory(location, false); |
+} |
+ |
// When V8 cannot allocated memory FatalProcessOutOfMemory is called. |
// The default fatal error handler is called and execution is stopped. |
void i::V8::FatalProcessOutOfMemory(const char* location, bool take_snapshot) { |