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

Commit e1519582 authored by Svetoslav Ganov's avatar Svetoslav Ganov
Browse files

Revert "Persist settings on a normal priority thread."

This reverts commit d289e64a.

Change-Id: Ic9455b538e0be8b9a4e4672f99b14978e70d2911
parent 4d87285c
Loading
Loading
Loading
Loading
+3 −23
Original line number Diff line number Diff line
@@ -17,7 +17,6 @@
package com.android.providers.settings;

import android.os.Handler;
import android.os.HandlerThread;
import android.os.Message;
import android.os.SystemClock;
import android.provider.Settings;
@@ -27,6 +26,7 @@ import android.util.AtomicFile;
import android.util.Slog;
import android.util.Xml;
import com.android.internal.annotations.GuardedBy;
import com.android.internal.os.BackgroundThread;
import libcore.io.IoUtils;
import libcore.util.Objects;
import org.xmlpull.v1.XmlPullParser;
@@ -153,7 +153,7 @@ final class SettingsState {
        final int settingCount = mSettings.size();
        for (int i = settingCount - 1; i >= 0; i--) {
            String name = mSettings.keyAt(i);
            // Settings defined by us are never dropped.
            // Settings defined by use are never dropped.
            if (Settings.System.PUBLIC_SETTINGS.contains(name)
                    || Settings.System.PRIVATE_SETTINGS.contains(name)) {
                continue;
@@ -494,7 +494,7 @@ final class SettingsState {
        public static final int MSG_PERSIST_SETTINGS = 1;

        public MyHandler() {
            super(PersistThread.getInstance().getLooper());
            super(BackgroundThread.getHandler().getLooper());
        }

        @Override
@@ -574,24 +574,4 @@ final class SettingsState {
            return true;
        }
    }

    private static final class PersistThread extends HandlerThread {
        private static final Object sLock = new Object();

        private static PersistThread sInstance;

        private PersistThread() {
            super("settings.persist");
        }

        public static PersistThread getInstance() {
            synchronized (sLock) {
                if (sInstance == null) {
                    sInstance = new PersistThread();
                    sInstance.start();
                }
                return sInstance;
            }
        }
    }
}