RESOLVED FIXED 126313
Stop using ThreadCondition in BlockAllocator
https://bugs.webkit.org/show_bug.cgi?id=126313
Summary Stop using ThreadCondition in BlockAllocator
Anders Carlsson
Reported 2013-12-30 16:40:13 PST
Stop using ThreadCondition in BlockAllocator
Attachments
Patch (5.37 KB, patch)
2013-12-30 16:41 PST, Anders Carlsson
no flags
Patch (5.37 KB, patch)
2013-12-30 17:14 PST, Anders Carlsson
sam: review+
Anders Carlsson
Comment 1 2013-12-30 16:41:36 PST
Anders Carlsson
Comment 2 2013-12-30 17:14:57 PST
Anders Carlsson
Comment 3 2013-12-30 17:18:38 PST
Alexey Proskuryakov
Comment 4 2013-12-30 22:53:40 PST
Rolled out with the rest of today's threading fixes, which broke WebKit2 on Mountain Lion. I don't know if this particular change caused any trouble - there was so much churn today that I could't tell which patch caused which badness. Perhaps we should simply re-land if we can get EWS green. I think that r161163 was a follow-up fix to this.
Filip Pizlo
Comment 5 2014-01-01 09:52:07 PST
Comment on attachment 220138 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=220138&action=review > Source/JavaScriptCore/heap/BlockAllocator.cpp:106 > + std::unique_lock<std::mutex> lock(m_emptyRegionConditionMutex); Why is this a unique_lock instead of lock_guard?
Anders Carlsson
Comment 6 2014-01-06 11:12:55 PST
(In reply to comment #5) > (From update of attachment 220138 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=220138&action=review > > > Source/JavaScriptCore/heap/BlockAllocator.cpp:106 > > + std::unique_lock<std::mutex> lock(m_emptyRegionConditionMutex); > > Why is this a unique_lock instead of lock_guard? Unique locks are used together with std::condition_variable.
Anders Carlsson
Comment 7 2014-01-20 11:27:19 PST
Note You need to log in before you can comment on or make changes to this bug.