blob: 46eae7e50eec3d0404739369dd7eb508bfef9726 [file] [log] [blame]
Elliott Hughese27955c2011-08-26 15:21:24 -07001/*
2 * Copyright (C) 2008 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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_SIGNAL_CATCHER_H_
18#define ART_RUNTIME_SIGNAL_CATCHER_H_
Elliott Hughese27955c2011-08-26 15:21:24 -070019
Narayan Kamatheb710332017-05-10 11:48:46 +010020#include "android-base/unique_fd.h"
Elliott Hughes76b61672012-12-12 17:47:30 -080021#include "base/mutex.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070022
23namespace art {
24
25class Runtime;
Elliott Hughes457005c2012-04-16 13:54:25 -070026class SignalSet;
Elliott Hughese27955c2011-08-26 15:21:24 -070027class Thread;
28
29/*
Elliott Hughes8cf5bc02012-02-02 16:32:16 -080030 * A daemon thread that catches signals and does something useful. For
Elliott Hughese27955c2011-08-26 15:21:24 -070031 * example, when a SIGQUIT (Ctrl-\) arrives, we suspend and dump the
32 * status of all threads.
33 */
34class SignalCatcher {
35 public:
Andreas Gampe53af0402018-05-03 10:40:37 -070036 SignalCatcher();
Elliott Hughese27955c2011-08-26 15:21:24 -070037 ~SignalCatcher();
38
Mathieu Chartier90443472015-07-16 20:32:27 -070039 void HandleSigQuit() REQUIRES(!Locks::mutator_lock_, !Locks::thread_list_lock_,
40 !Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070041
Elliott Hughes42ee1422011-09-06 12:33:32 -070042
Elliott Hughese27955c2011-08-26 15:21:24 -070043 private:
Mathieu Chartier90443472015-07-16 20:32:27 -070044 // NO_THREAD_SAFETY_ANALYSIS for static function calling into member function with excludes lock.
45 static void* Run(void* arg) NO_THREAD_SAFETY_ANALYSIS;
Elliott Hughese27955c2011-08-26 15:21:24 -070046
Elliott Hughes94ce37a2011-10-18 15:07:48 -070047 void HandleSigUsr1();
48 void Output(const std::string& s);
Mathieu Chartier90443472015-07-16 20:32:27 -070049 void SetHaltFlag(bool new_value) REQUIRES(!lock_);
50 bool ShouldHalt() REQUIRES(!lock_);
51 int WaitForSignal(Thread* self, SignalSet& signals) REQUIRES(!lock_);
Elliott Hughes5fe594f2011-09-08 12:33:17 -070052
Ian Rogersc604d732012-10-14 16:09:54 -070053 mutable Mutex lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
54 ConditionVariable cond_ GUARDED_BY(lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -070055 bool halt_ GUARDED_BY(lock_);
56 pthread_t pthread_ GUARDED_BY(lock_);
57 Thread* thread_ GUARDED_BY(lock_);
Elliott Hughese27955c2011-08-26 15:21:24 -070058};
59
60} // namespace art
61
Brian Carlstromfc0e3212013-07-17 14:40:12 -070062#endif // ART_RUNTIME_SIGNAL_CATCHER_H_