| Index: mojo/edk/system/wait_set_dispatcher.h
|
| diff --git a/mojo/edk/system/wait_set_dispatcher.h b/mojo/edk/system/wait_set_dispatcher.h
|
| index d4f7cd55f26b87b61786a15d34ae5b0348a1ec01..4b7650d5f7239ebc231efc4c8ea4b39eed28cc6b 100644
|
| --- a/mojo/edk/system/wait_set_dispatcher.h
|
| +++ b/mojo/edk/system/wait_set_dispatcher.h
|
| @@ -62,12 +62,7 @@ class WaitSetDispatcher final : public Dispatcher, public Awakable {
|
| private:
|
| // Represents an entry in the wait set.
|
| struct Entry {
|
| - enum class TriggerState {
|
| - NOT_TRIGGERED,
|
| - POSSIBLY_SATISFIED,
|
| - NEVER_SATISFIABLE,
|
| - CLOSED
|
| - };
|
| + enum class TriggerState { NOT_TRIGGERED, SATISFIED, UNSATISFIABLE, CLOSED };
|
|
|
| Entry(MojoHandleSignals signals, uint64_t cookie);
|
| ~Entry();
|
| @@ -113,7 +108,7 @@ class WaitSetDispatcher final : public Dispatcher, public Awakable {
|
| UserPointer<uint32_t> max_results) override;
|
|
|
| // |Awakable| implementation:
|
| - bool Awake(uint64_t context,
|
| + void Awake(uint64_t context,
|
| AwakeReason reason,
|
| const HandleSignalsState& signals_state) override;
|
|
|
|
|