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

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

Issue 2384213003: reflow comments in platform/heap (Closed)
Patch Set: Created 4 years, 2 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.cpp
diff --git a/third_party/WebKit/Source/platform/heap/SafePoint.cpp b/third_party/WebKit/Source/platform/heap/SafePoint.cpp
index 9da1cff842c336037af51c8e927832c6beb177d9..451a4251f06ec8fdc59ad57e63bc7e639938d091 100644
--- a/third_party/WebKit/Source/platform/heap/SafePoint.cpp
+++ b/third_party/WebKit/Source/platform/heap/SafePoint.cpp
@@ -50,9 +50,9 @@ bool SafePointBarrier::parkOthers() {
while (acquireLoad(&m_unparkedThreadCount) > 0) {
double expirationTime = currentTime() + lockingTimeout();
if (!m_parked.timedWait(m_mutex, expirationTime)) {
- // One of the other threads did not return to a safepoint within the maximum
- // time we allow for threads to be parked. Abandon the GC and resume the
- // currently parked threads.
+ // One of the other threads did not return to a safepoint within the
+ // maximum time we allow for threads to be parked. Abandon the GC and
+ // resume the currently parked threads.
resumeOthers(true);
return false;
}
« no previous file with comments | « third_party/WebKit/Source/platform/heap/SafePoint.h ('k') | third_party/WebKit/Source/platform/heap/SelfKeepAlive.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698