| 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;
|
| }
|
|
|