Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f12bd0c9 authored by Steve Kondik's avatar Steve Kondik
Browse files

input: Adjust priority

 * Bring into the desired group to get the best result.

Change-Id: I3bd031074cd7006994736b4c22d0294b6012f662
parent 236ebeae
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -51,13 +51,13 @@ void InputManager::initialize() {
}

status_t InputManager::start() {
    status_t result = mDispatcherThread->run("InputDispatcher", PRIORITY_URGENT_DISPLAY);
    status_t result = mDispatcherThread->run("InputDispatcher", PRIORITY_URGENT_DISPLAY - 1);
    if (result) {
        ALOGE("Could not start InputDispatcher thread due to error %d.", result);
        return result;
    }

    result = mReaderThread->run("InputReader", PRIORITY_URGENT_DISPLAY);
    result = mReaderThread->run("InputReader", PRIORITY_URGENT_DISPLAY - 1);
    if (result) {
        ALOGE("Could not start InputReader thread due to error %d.", result);