diff options
| author | 2024-09-07 01:13:29 +0000 | |
|---|---|---|
| committer | 2024-09-07 01:13:29 +0000 | |
| commit | 9f4086816e2002ce3c96b11288bb12f05e054d15 (patch) | |
| tree | b7c20ba3622d861a20585319db41de019b4668d5 /services/surfaceflinger/StartPropertySetThread.cpp | |
| parent | 5a473e26703f8b8b90c8a352caf7faed3d896a45 (diff) | |
| parent | 60d226fc1fff9274bbb33d9c7c8a3f1b3724e832 (diff) | |
Merge "Merge 24Q3 to AOSP main" into main
Diffstat (limited to 'services/surfaceflinger/StartPropertySetThread.cpp')
| -rw-r--r-- | services/surfaceflinger/StartPropertySetThread.cpp | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/services/surfaceflinger/StartPropertySetThread.cpp b/services/surfaceflinger/StartPropertySetThread.cpp deleted file mode 100644 index f42cd53e0a..0000000000 --- a/services/surfaceflinger/StartPropertySetThread.cpp +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (C) 2017 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include <cutils/properties.h> -#include "StartPropertySetThread.h" - -namespace android { - -StartPropertySetThread::StartPropertySetThread(bool timestampPropertyValue): - Thread(false), mTimestampPropertyValue(timestampPropertyValue) {} - -status_t StartPropertySetThread::Start() { - return run("SurfaceFlinger::StartPropertySetThread", PRIORITY_NORMAL); -} - -bool StartPropertySetThread::threadLoop() { - // Set property service.sf.present_timestamp, consumer need check its readiness - property_set(kTimestampProperty, mTimestampPropertyValue ? "1" : "0"); - // Clear BootAnimation exit flag - property_set("service.bootanim.exit", "0"); - property_set("service.bootanim.progress", "0"); - // Start BootAnimation if not started - property_set("ctl.start", "bootanim"); - // Exit immediately - return false; -} - -} // namespace android |