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

Unified Diff: mojo/system/waiter_list.cc

Issue 621153003: Move mojo edk into mojo/edk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix checkdeps Created 6 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
« no previous file with comments | « mojo/system/waiter_list.h ('k') | mojo/system/waiter_list_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/system/waiter_list.cc
diff --git a/mojo/system/waiter_list.cc b/mojo/system/waiter_list.cc
deleted file mode 100644
index 6ee90100aa8eba36af6ee36897aed5a216bc0536..0000000000000000000000000000000000000000
--- a/mojo/system/waiter_list.cc
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "mojo/system/waiter_list.h"
-
-#include "base/logging.h"
-#include "mojo/system/handle_signals_state.h"
-#include "mojo/system/waiter.h"
-
-namespace mojo {
-namespace system {
-
-WaiterList::WaiterList() {
-}
-
-WaiterList::~WaiterList() {
- DCHECK(waiters_.empty());
-}
-
-void WaiterList::AwakeWaitersForStateChange(const HandleSignalsState& state) {
- for (WaiterInfoList::iterator it = waiters_.begin(); it != waiters_.end();
- ++it) {
- if (state.satisfies(it->signals))
- it->waiter->Awake(MOJO_RESULT_OK, it->context);
- else if (!state.can_satisfy(it->signals))
- it->waiter->Awake(MOJO_RESULT_FAILED_PRECONDITION, it->context);
- }
-}
-
-void WaiterList::CancelAllWaiters() {
- for (WaiterInfoList::iterator it = waiters_.begin(); it != waiters_.end();
- ++it) {
- it->waiter->Awake(MOJO_RESULT_CANCELLED, it->context);
- }
- waiters_.clear();
-}
-
-void WaiterList::AddWaiter(Waiter* waiter,
- MojoHandleSignals signals,
- uint32_t context) {
- waiters_.push_back(WaiterInfo(waiter, signals, context));
-}
-
-void WaiterList::RemoveWaiter(Waiter* waiter) {
- // We allow a thread to wait on the same handle multiple times simultaneously,
- // so we need to scan the entire list and remove all occurrences of |waiter|.
- for (WaiterInfoList::iterator it = waiters_.begin(); it != waiters_.end();) {
- WaiterInfoList::iterator maybe_delete = it;
- ++it;
- if (maybe_delete->waiter == waiter)
- waiters_.erase(maybe_delete);
- }
-}
-
-} // namespace system
-} // namespace mojo
« no previous file with comments | « mojo/system/waiter_list.h ('k') | mojo/system/waiter_list_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698