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

Commit 3af0c6a1 authored by Siim Sammul's avatar Siim Sammul Committed by Gerrit Code Review
Browse files

Merge "Move binder latency data logging to a background thread to improve...

Merge "Move binder latency data logging to a background thread to improve performance of the main thread."
parents 487a9cc8 42e84a4c
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -19,7 +19,6 @@ package com.android.internal.os;
import android.annotation.Nullable;
import android.os.Binder;
import android.os.Handler;
import android.os.Looper;
import android.os.SystemClock;
import android.util.ArrayMap;
import android.util.Slog;
@@ -181,7 +180,7 @@ public class BinderLatencyObserver {
        }

        public Handler getHandler() {
            return new Handler(Looper.getMainLooper());
            return BackgroundThread.getHandler();
        }
    }