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

Unified Diff: mojo/edk/system/wait_set_dispatcher.h

Issue 2061913002: Don't call the other wait set impl dispatcher methods under mutex either. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 6 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/edk/system/dispatcher.cc ('k') | mojo/edk/system/wait_set_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 dd4e96e5ef1cbd8455c63c7f2d8845bb1e95a7bd..2dad87523c3aebb8baf2b7bbacd25a8050a8b332 100644
--- a/mojo/edk/system/wait_set_dispatcher.h
+++ b/mojo/edk/system/wait_set_dispatcher.h
@@ -54,12 +54,11 @@ class WaitSetDispatcher final : public Dispatcher {
util::RefPtr<Dispatcher> CreateEquivalentDispatcherAndCloseImplNoLock(
MessagePipe* message_pipe,
unsigned port) override;
- MojoResult WaitSetAddImplNoLock(
- UserPointer<const MojoWaitSetAddOptions> options,
- Handle&& handle,
- MojoHandleSignals signals,
- uint64_t cookie) override;
- MojoResult WaitSetRemoveImplNoLock(uint64_t cookie) override;
+ MojoResult WaitSetAddImpl(UserPointer<const MojoWaitSetAddOptions> options,
+ Handle&& handle,
+ MojoHandleSignals signals,
+ uint64_t cookie) override;
+ MojoResult WaitSetRemoveImpl(uint64_t cookie) override;
MojoResult WaitSetWaitImpl(MojoDeadline deadline,
UserPointer<uint32_t> num_results,
UserPointer<MojoWaitSetResult> results,
« no previous file with comments | « mojo/edk/system/dispatcher.cc ('k') | mojo/edk/system/wait_set_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698