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

Side by Side Diff: mojo/edk/system/awakable_list.h

Issue 2741033003: Mojo EDK: Introduce MojoQueryHandleSignalsState API (Closed)
Patch Set: fix stupid bad DCHECK Created 3 years, 9 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 unified diff | Download patch
« no previous file with comments | « mojo/edk/system/BUILD.gn ('k') | mojo/edk/system/awakable_list.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MOJO_EDK_SYSTEM_AWAKABLE_LIST_H_ 5 #ifndef MOJO_EDK_SYSTEM_AWAKABLE_LIST_H_
6 #define MOJO_EDK_SYSTEM_AWAKABLE_LIST_H_ 6 #define MOJO_EDK_SYSTEM_AWAKABLE_LIST_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "mojo/edk/system/system_impl_export.h" 14 #include "mojo/edk/system/system_impl_export.h"
15 #include "mojo/public/c/system/types.h" 15 #include "mojo/public/c/system/types.h"
16 #include "mojo/public/cpp/system/handle_signals_state.h"
16 17
17 namespace mojo { 18 namespace mojo {
18 namespace edk { 19 namespace edk {
19 20
20 class Awakable; 21 class Awakable;
21 struct HandleSignalsState;
22 22
23 // |AwakableList| tracks all the |Waiter|s that are waiting on a given 23 // |AwakableList| tracks all the |Waiter|s that are waiting on a given
24 // handle/|Dispatcher|. There should be a |AwakableList| for each handle that 24 // handle/|Dispatcher|. There should be a |AwakableList| for each handle that
25 // can be waited on (in any way). In the simple case, the |AwakableList| is 25 // can be waited on (in any way). In the simple case, the |AwakableList| is
26 // owned by the |Dispatcher|, whereas in more complex cases it is owned by the 26 // owned by the |Dispatcher|, whereas in more complex cases it is owned by the
27 // secondary object (see simple_dispatcher.* and the explanatory comment in 27 // secondary object (see simple_dispatcher.* and the explanatory comment in
28 // core.cc). This class is thread-unsafe (all concurrent access must be 28 // core.cc). This class is thread-unsafe (all concurrent access must be
29 // protected by some lock). 29 // protected by some lock).
30 class MOJO_SYSTEM_IMPL_EXPORT AwakableList { 30 class MOJO_SYSTEM_IMPL_EXPORT AwakableList {
31 public: 31 public:
(...skipping 18 matching lines...) Expand all
50 50
51 AwakeInfoList awakables_; 51 AwakeInfoList awakables_;
52 52
53 DISALLOW_COPY_AND_ASSIGN(AwakableList); 53 DISALLOW_COPY_AND_ASSIGN(AwakableList);
54 }; 54 };
55 55
56 } // namespace edk 56 } // namespace edk
57 } // namespace mojo 57 } // namespace mojo
58 58
59 #endif // MOJO_EDK_SYSTEM_AWAKABLE_LIST_H_ 59 #endif // MOJO_EDK_SYSTEM_AWAKABLE_LIST_H_
OLDNEW
« no previous file with comments | « mojo/edk/system/BUILD.gn ('k') | mojo/edk/system/awakable_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698