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

Commit 879becf5 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Code Review
Browse files

Merge "Fix that InputDeviceReaderThread that got killed during startup"

parents 9bf3bb21 15f66ce1
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -299,7 +299,9 @@ public abstract class KeyInputQueue {
        mLast = new QueuedEvent();
        mFirst.next = mLast;
        mLast.prev = mFirst;
    }

    void start() {
        mThread.start();
    }

+1 −0
Original line number Diff line number Diff line
@@ -621,6 +621,7 @@ public class WindowManagerService extends IWindowManager.Stub
        }

        mInputThread.start();
        mQueue.start();

        // Add ourself to the Watchdog monitors.
        Watchdog.getInstance().addMonitor(this);