diff options
author | Tim Kilbourn <tkilbourn@google.com> | 2015-03-26 14:36:32 -0700 |
---|---|---|
committer | Tim Kilbourn <tkilbourn@google.com> | 2015-03-27 09:15:43 -0700 |
commit | 8892ce6383c7aa3e18107b94889882a0374de69f (patch) | |
tree | 257ab6febcbeb8869399f10ae2b46f4177409d2c /include/utils | |
parent | c38eb8f390f3ca6edb1ec63fbfa95ca0057212fc (diff) |
Use eventfd instead of pipe in Looper.
Bug: 19933224
Change-Id: I6611e918db960bbb0e74f8308e10bdf79510b899
Diffstat (limited to 'include/utils')
-rw-r--r-- | include/utils/Looper.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/utils/Looper.h b/include/utils/Looper.h index a38125171..da2d5f2b5 100644 --- a/include/utils/Looper.h +++ b/include/utils/Looper.h @@ -447,8 +447,7 @@ private: const bool mAllowNonCallbacks; // immutable - int mWakeReadPipeFd; // immutable - int mWakeWritePipeFd; // immutable + int mWakeEventFd; // immutable Mutex mLock; Vector<MessageEnvelope> mMessageEnvelopes; // guarded by mLock |