Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(338)

Unified Diff: src/isolate.cc

Issue 3076032: [Isolates] A fix for 2 crashing tests in arm simulator (post-API patch). (Closed)
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/isolate.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index bf5a47b692969bb3ba793a3bcd80f36f3c5027d7..ff41a9a1efeb2a6692034049b034c8627acc41ef 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -168,9 +168,6 @@ Isolate* Isolate::default_isolate_ = NULL;
Thread::LocalStorageKey Isolate::isolate_key_;
Thread::LocalStorageKey Isolate::thread_id_key_;
Thread::LocalStorageKey Isolate::per_isolate_thread_data_key_;
-#if defined(V8_TARGET_ARCH_ARM) && !defined(__arm__)
-Thread::LocalStorageKey Isolate::simulator_key_;
-#endif
Mutex* Isolate::process_wide_mutex_ = NULL;
Isolate::ThreadDataTable* Isolate::thread_data_table_ = NULL;
Isolate::ThreadId Isolate::highest_thread_id_ = 0;
@@ -247,9 +244,6 @@ void Isolate::EnsureDefaultIsolate() {
isolate_key_ = Thread::CreateThreadLocalKey();
thread_id_key_ = Thread::CreateThreadLocalKey();
per_isolate_thread_data_key_ = Thread::CreateThreadLocalKey();
-#if defined(V8_TARGET_ARCH_ARM) && !defined(__arm__)
- simulator_key_ = Thread::CreateThreadLocalKey();
-#endif
thread_data_table_ = new Isolate::ThreadDataTable();
default_isolate_ = new Isolate();
}
« no previous file with comments | « src/isolate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698