diff options
author | isaacs <i@izs.me> | 2012-06-09 08:09:42 -0700 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-06-09 08:09:42 -0700 |
commit | 940a6863ead6622e5439e07be631359c31e63b68 (patch) | |
tree | c5aa25c048b8f0fd622d4c42fa134ca645fcbcd7 /deps/v8/src/isolate.cc | |
parent | 569acea0eefed2c7da7453b7dcef6ff47491ca1c (diff) | |
download | node-940a6863ead6622e5439e07be631359c31e63b68.tar.gz |
Roll V8 back to 3.9.24.31
Diffstat (limited to 'deps/v8/src/isolate.cc')
-rw-r--r-- | deps/v8/src/isolate.cc | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/deps/v8/src/isolate.cc b/deps/v8/src/isolate.cc index 0c97abd89..e80512239 100644 --- a/deps/v8/src/isolate.cc +++ b/deps/v8/src/isolate.cc @@ -1430,7 +1430,6 @@ void Isolate::ThreadDataTable::RemoveAllThreads(Isolate* isolate) { Isolate::Isolate() : state_(UNINITIALIZED), - embedder_data_(NULL), entry_stack_(NULL), stack_trace_nesting_level_(0), incomplete_message_(NULL), @@ -1473,6 +1472,7 @@ Isolate::Isolate() string_tracker_(NULL), regexp_stack_(NULL), date_cache_(NULL), + embedder_data_(NULL), context_exit_happened_(false) { TRACE_ISOLATE(constructor); @@ -1857,13 +1857,6 @@ bool Isolate::Init(Deserializer* des) { LOG(this, LogCompiledFunctions()); } - CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, state_)), - Internals::kIsolateStateOffset); - CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, embedder_data_)), - Internals::kIsolateEmbedderDataOffset); - CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, heap_.roots_)), - Internals::kIsolateRootsOffset); - state_ = INITIALIZED; time_millis_at_init_ = OS::TimeCurrentMillis(); return true; |