Index: third_party/WebKit/Source/platform/heap/ThreadState.cpp |
diff --git a/third_party/WebKit/Source/platform/heap/ThreadState.cpp b/third_party/WebKit/Source/platform/heap/ThreadState.cpp |
index e1294ec308fb758f3ef5f6e26e3ba3df415c4253..cbf3b3c2f1ba769d4f323380e8480ed79e2a0a0e 100644 |
--- a/third_party/WebKit/Source/platform/heap/ThreadState.cpp |
+++ b/third_party/WebKit/Source/platform/heap/ThreadState.cpp |
@@ -241,6 +241,7 @@ void ThreadState::runTerminationGC() |
int currentCount = getPersistentRegion()->numberOfPersistents(); |
ASSERT(currentCount >= 0); |
while (currentCount != oldCount) { |
+ releaseStaticPersistentNodes(); |
pfeldman
2016/05/06 21:20:40
What is this about? Could you send it to the heap
xidachen
2016/05/06 21:41:54
sof@: Thank you for your CL that clears static per
sof
2016/05/07 05:17:45
It is still needed, a destructor might still creat
|
ThreadHeap::collectGarbageForTerminatingThread(this); |
oldCount = currentCount; |
currentCount = getPersistentRegion()->numberOfPersistents(); |