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

Unified Diff: runtime/vm/isolate.h

Issue 1293253005: Completely remove InterruptableThreadState and Fix ThreadRegistry leak (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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 | « runtime/vm/growable_array.h ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index 3d06d6f091662382d079c13919042702373feb7c..e5873ea3150eeb38280716c1b91fc364d9217835 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -634,10 +634,6 @@ class Isolate : public BaseIsolate {
void PrintJSON(JSONStream* stream, bool ref = true);
- InterruptableThreadState* thread_state() const {
- return (mutator_thread_ == NULL) ? NULL : mutator_thread_->thread_state();
- }
-
CompilerStats* compiler_stats() {
return compiler_stats_;
}
@@ -917,7 +913,6 @@ class Isolate : public BaseIsolate {
// Manage list of existing isolates.
static void AddIsolateTolist(Isolate* isolate);
static void RemoveIsolateFromList(Isolate* isolate);
- static void CheckForDuplicateThreadState(InterruptableThreadState* state);
static Monitor* isolates_list_monitor_; // Protects isolates_list_head_
static Isolate* isolates_list_head_;
« no previous file with comments | « runtime/vm/growable_array.h ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698