From 7543c38dca2b4c64711f5667b82d80ffab3fd6a2 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Sun, 5 Feb 2012 23:30:14 +0100 Subject: [PATCH] Revert "Add explicit v8 locker" This reverts commit 11d1eca9f3c465045828e3a00b103620c8253258. It sporadically (but reproducibly) triggers an assert inside V8: Fatal error in /path/to/node/deps/v8/src/isolate.cc, line 1857 CHECK(CurrentPerIsolateThreadData()->isolate_ == this) failed Needs further investigation. --- src/node.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index cb37fef25..9ac528a85 100644 --- a/src/node.cc +++ b/src/node.cc @@ -2633,7 +2633,6 @@ int Start(int argc, char *argv[]) { argv = Init(argc, argv); v8::V8::Initialize(); - v8::Locker locker; v8::HandleScope handle_scope; // Create the one and only Context.