RESOLVED FIXED 148090
WTF::Condition should have a fast path for notifyOne/notifyAll that avoids calling unparkOne/unparkAll
https://bugs.webkit.org/show_bug.cgi?id=148090
Summary WTF::Condition should have a fast path for notifyOne/notifyAll that avoids ca...
Filip Pizlo
Reported 2015-08-17 13:28:08 PDT
Patch forthcoming.
Attachments
the patch (4.45 KB, patch)
2015-08-18 12:50 PDT, Filip Pizlo
ggaren: review+
Filip Pizlo
Comment 1 2015-08-18 12:50:30 PDT
Created attachment 259291 [details] the patch
WebKit Commit Bot
Comment 2 2015-08-18 12:53:18 PDT
Attachment 259291 [details] did not pass style-queue: ERROR: Source/WTF/wtf/Condition.h:153: Place brace on its own line for function definitions. [whitespace/braces] [4] Total errors found: 1 in 2 files If any of these errors are false positives, please file a bug against check-webkit-style.
Geoffrey Garen
Comment 3 2015-08-18 13:39:52 PDT
Comment on attachment 259291 [details] the patch View in context: https://bugs.webkit.org/attachment.cgi?id=259291&action=review r=me > Source/WTF/wtf/Condition.h:72 > + // Let everyone know that we will be waiting. Do this why we hold the queue lock, why => while > Source/WTF/wtf/Condition.h:167 > + // guaranteed to then notifyAll() anyway. So, if there is a race with some thread calling notifyAll => unparkAll.
Filip Pizlo
Comment 4 2015-08-18 14:29:46 PDT
(In reply to comment #3) > Comment on attachment 259291 [details] > the patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=259291&action=review > > r=me > > > Source/WTF/wtf/Condition.h:72 > > + // Let everyone know that we will be waiting. Do this why we hold the queue lock, > > why => while > > > Source/WTF/wtf/Condition.h:167 > > + // guaranteed to then notifyAll() anyway. So, if there is a race with some thread calling > > notifyAll => unparkAll. Fixed, thanks!
Filip Pizlo
Comment 5 2015-08-18 15:36:00 PDT
Note You need to log in before you can comment on or make changes to this bug.