summaryrefslogtreecommitdiff
path: root/services/inputflinger/InputManager.cpp
diff options
context:
space:
mode:
author Siarhei Vishniakou <svv@google.com> 2019-11-15 17:59:25 +0000
committer Siarhei Vishniakou <svv@google.com> 2019-11-15 18:04:37 +0000
commit6cbc978d76d1c3b5d48f8018dc291bc987d5ff0f (patch)
treeb87e5c6af0503bc8617bd2af48e3e0a5e47c3c02 /services/inputflinger/InputManager.cpp
parentf15a8aa344946fb274b1db9f546d5fed746cae70 (diff)
Revert "Reland "Let InputReader handle its own thread""
Reason for revert: flaky tests b/144546498 Bug: 144546498 Change-Id: Id5a4c8dc8e634b23b560dde6843b5a5860305e5f
Diffstat (limited to 'services/inputflinger/InputManager.cpp')
-rw-r--r--services/inputflinger/InputManager.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/services/inputflinger/InputManager.cpp b/services/inputflinger/InputManager.cpp
index 1043390f84..e7640dd6af 100644
--- a/services/inputflinger/InputManager.cpp
+++ b/services/inputflinger/InputManager.cpp
@@ -46,6 +46,7 @@ InputManager::~InputManager() {
}
void InputManager::initialize() {
+ mReaderThread = new InputReaderThread(mReader);
mDispatcherThread = new InputDispatcherThread(mDispatcher);
}
@@ -56,9 +57,9 @@ status_t InputManager::start() {
return result;
}
- result = mReader->start();
+ result = mReaderThread->run("InputReader", PRIORITY_URGENT_DISPLAY);
if (result) {
- ALOGE("Could not start InputReader due to error %d.", result);
+ ALOGE("Could not start InputReader thread due to error %d.", result);
mDispatcherThread->requestExit();
return result;
@@ -68,9 +69,9 @@ status_t InputManager::start() {
}
status_t InputManager::stop() {
- status_t result = mReader->stop();
+ status_t result = mReaderThread->requestExitAndWait();
if (result) {
- ALOGW("Could not stop InputReader due to error %d.", result);
+ ALOGW("Could not stop InputReader thread due to error %d.", result);
}
result = mDispatcherThread->requestExitAndWait();