Revision: 6688
Author: ant...@chromium.org
Date: Tue Feb  8 11:19:42 2011
Log: We cannot assert that v8 is running in fatal error callback.

BUG=v8:1111

Review URL: http://codereview.chromium.org/6450005
http://code.google.com/p/v8/source/detail?r=6688

Modified:
 /branches/bleeding_edge/src/api.cc

=======================================
--- /branches/bleeding_edge/src/api.cc  Wed Feb  2 05:31:52 2011
+++ /branches/bleeding_edge/src/api.cc  Tue Feb  8 11:19:42 2011
@@ -115,7 +115,9 @@

 static void DefaultFatalErrorHandler(const char* location,
                                      const char* message) {
-  ENTER_V8;
+#ifdef ENABLE_VMSTATE_TRACKING
+  i::VMState __state__(i::OTHER);
+#endif
   API_Fatal(location, message);
 }

--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev

Reply via email to