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

Unified Diff: Source/heap/ThreadState.h

Issue 169653003: Allow creating non-thread-local Persistents that can be passed between threads. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 10 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 | « Source/heap/HeapTest.cpp ('k') | Source/heap/ThreadState.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/heap/ThreadState.h
diff --git a/Source/heap/ThreadState.h b/Source/heap/ThreadState.h
index f240c2325cbb23766085dfd9e10586ca8beecf3d..8b22a5bca21381ccef3343863906fac056646df4 100644
--- a/Source/heap/ThreadState.h
+++ b/Source/heap/ThreadState.h
@@ -38,6 +38,7 @@
#include "wtf/PassOwnPtr.h"
#include "wtf/ThreadSpecific.h"
#include "wtf/Threading.h"
+#include "wtf/ThreadingPrimitives.h"
#include "wtf/Vector.h"
namespace WebCore {
@@ -453,6 +454,11 @@ public:
// List of persistent roots allocated on the given thread.
PersistentNode* roots() const { return m_persistents; }
+ // List of global persistent roots not owned by any particular thread.
+ // globalRootsMutex must be acquired before any modifications.
+ static PersistentNode* globalRoots();
+ static Mutex& globalRootsMutex();
+
// Visit local thread stack and trace all pointers conservatively.
void visitStack(Visitor*);
« no previous file with comments | « Source/heap/HeapTest.cpp ('k') | Source/heap/ThreadState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698