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

Unified Diff: src/isolate.h

Issue 11782028: Parallel and concurrent sweeping. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 11 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
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index b3cfb4327db2085b1f0934de8240e9f101de2e5e..3babbc4b69b5e2b3293ef1adce04f01ef9bcdb65 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -42,6 +42,7 @@
#include "hashmap.h"
#include "heap.h"
#include "optimizing-compiler-thread.h"
+#include "sweeper-thread.h"
Michael Starzinger 2013/01/28 16:30:18 There is no need to include the full header, just
Hannes Payer (out of office) 2013/01/30 10:11:27 Done.
#include "regexp-stack.h"
#include "runtime-profiler.h"
#include "runtime.h"
@@ -1070,6 +1071,10 @@ class Isolate {
return &optimizing_compiler_thread_;
}
+ SweeperThread** sweeper_threads() {
+ return sweeper_thread_;
+ }
+
private:
Isolate();
@@ -1295,11 +1300,13 @@ class Isolate {
DeferredHandles* deferred_handles_head_;
OptimizingCompilerThread optimizing_compiler_thread_;
+ SweeperThread** sweeper_thread_;
friend class ExecutionAccess;
friend class HandleScopeImplementer;
friend class IsolateInitializer;
friend class OptimizingCompilerThread;
+ friend class SweeperThread;
friend class ThreadManager;
friend class Simulator;
friend class StackGuard;

Powered by Google App Engine
This is Rietveld 408576698