blob: fcd6ebec12241590798b4000b86a418bf0341d8b [file] [log] [blame]
Ravneet98ffa752022-03-02 07:22:46 +00001/*
2 * Copyright (C) 2022 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "CameraServiceWatchdog"
18
19#include "CameraServiceWatchdog.h"
20
21namespace android {
22
23bool CameraServiceWatchdog::threadLoop()
24{
25 {
26 AutoMutex _l(mWatchdogLock);
27
28 while (mPause) {
29 mWatchdogCondition.wait(mWatchdogLock);
30 }
31 }
32
33 std::this_thread::sleep_for(std::chrono::milliseconds(mCycleLengthMs));
34
35 {
36 AutoMutex _l(mWatchdogLock);
37
38 for (auto it = tidToCycleCounterMap.begin(); it != tidToCycleCounterMap.end(); it++) {
39 uint32_t currentThreadId = it->first;
40
41 tidToCycleCounterMap[currentThreadId]++;
42
43 if (tidToCycleCounterMap[currentThreadId] >= mMaxCycles) {
44 ALOGW("CameraServiceWatchdog triggering kill for pid: %d", getpid());
45 kill(getpid(), SIGKILL);
46 }
47 }
48 }
49
50 return true;
51}
52
53void CameraServiceWatchdog::requestExit()
54{
55 Thread::requestExit();
56
57 AutoMutex _l(mWatchdogLock);
58
59 tidToCycleCounterMap.clear();
60
61 if (mPause) {
62 mPause = false;
63 mWatchdogCondition.signal();
64 }
65}
66
67void CameraServiceWatchdog::stop(uint32_t tid)
68{
69 AutoMutex _l(mWatchdogLock);
70
71 tidToCycleCounterMap.erase(tid);
72
73 if (tidToCycleCounterMap.empty()) {
74 mPause = true;
75 }
76}
77
78void CameraServiceWatchdog::start(uint32_t tid)
79{
80 AutoMutex _l(mWatchdogLock);
81
82 tidToCycleCounterMap[tid] = 0;
83
84 if (mPause) {
85 mPause = false;
86 mWatchdogCondition.signal();
87 }
88}
89
90} // namespace android