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

Unified Diff: third_party/WebKit/Source/platform/heap/SafePoint.h

Issue 1477023003: Refactor the Heap into ThreadHeap to prepare for per thread heaps Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactored Created 4 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: third_party/WebKit/Source/platform/heap/SafePoint.h
diff --git a/third_party/WebKit/Source/platform/heap/SafePoint.h b/third_party/WebKit/Source/platform/heap/SafePoint.h
index 0b96633b51b4b40dcd08a8fa33228eb410f5901a..8b6072395b88657f38c53ca57ce85d484c7e1f8c 100644
--- a/third_party/WebKit/Source/platform/heap/SafePoint.h
+++ b/third_party/WebKit/Source/platform/heap/SafePoint.h
@@ -90,7 +90,7 @@ private:
class SafePointBarrier final {
WTF_MAKE_NONCOPYABLE(SafePointBarrier);
public:
- SafePointBarrier();
+ SafePointBarrier(MultiThreadGCGroup*);
haraken 2016/01/28 15:52:50 Add explicit.
keishi 2016/02/29 06:02:33 Done.
~SafePointBarrier();
// Request other attached threads that are not at safe points to park
@@ -125,6 +125,7 @@ private:
Mutex m_mutex;
ThreadCondition m_parked;
ThreadCondition m_resume;
+ MultiThreadGCGroup* m_gcGroup;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698