Searched refs:waitlist_ (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/v8/src/base/platform/
H A Dcondition-variable.h68 NativeHandle() : waitlist_(NULL), freelist_(NULL) {}
75 Event* waitlist() { return waitlist_; }
78 Event* waitlist_; member in class:v8::base::FINAL::FINAL
H A Dcondition-variable.cc142 DCHECK(waitlist_ == NULL);
167 for (Event* we = waitlist_; we != NULL; we = we->next_) {
173 event->next_ = waitlist_;
174 waitlist_ = event;
184 for (Event** wep = &waitlist_;; wep = &(*wep)->next_) {
209 if (!result && event->notified_ && waitlist_ != NULL) {
210 ok = ::SetEvent(waitlist_->handle_);
213 waitlist_->notified_ = true;

Completed in 306 milliseconds