blob: 89132c9cce9c9b98eb3f409afe1fa661eee9b8f1 [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
17#ifndef ART_SRC_SIGNAL_CATCHER_H_
18#define ART_SRC_SIGNAL_CATCHER_H_
19
Elliott Hughes8daa0922011-09-11 13:46:25 -070020#include "mutex.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070021
22namespace art {
23
24class Runtime;
25class Thread;
26
27/*
28 * A thread that catches signals and does something useful. For
29 * example, when a SIGQUIT (Ctrl-\) arrives, we suspend and dump the
30 * status of all threads.
31 */
32class SignalCatcher {
33 public:
Elliott Hughes94ce37a2011-10-18 15:07:48 -070034 SignalCatcher(const std::string& stack_trace_file);
Elliott Hughese27955c2011-08-26 15:21:24 -070035 ~SignalCatcher();
36
Elliott Hughes94ce37a2011-10-18 15:07:48 -070037 void HandleSigQuit();
Elliott Hughes42ee1422011-09-06 12:33:32 -070038
Elliott Hughese27955c2011-08-26 15:21:24 -070039 private:
40 static void* Run(void* arg);
Elliott Hughese27955c2011-08-26 15:21:24 -070041
Elliott Hughes94ce37a2011-10-18 15:07:48 -070042 void HandleSigUsr1();
43 void Output(const std::string& s);
Elliott Hughes5fe594f2011-09-08 12:33:17 -070044 void SetHaltFlag(bool new_value);
45 bool ShouldHalt();
Elliott Hughesc2f80062011-11-07 11:57:51 -080046 int WaitForSignal(sigset_t& mask);
Elliott Hughes5fe594f2011-09-08 12:33:17 -070047
Elliott Hughes94ce37a2011-10-18 15:07:48 -070048 std::string stack_trace_file_;
Elliott Hughes8daa0922011-09-11 13:46:25 -070049 mutable Mutex lock_;
Elliott Hughes5fe594f2011-09-08 12:33:17 -070050 bool halt_;
Elliott Hughes5f791332011-09-15 17:45:30 -070051 ConditionVariable cond_;
Elliott Hughes8d768a92011-09-14 16:35:25 -070052 pthread_t pthread_;
53 Thread* thread_;
Elliott Hughese27955c2011-08-26 15:21:24 -070054};
55
56} // namespace art
57
58#endif // ART_SRC_SIGNAL_CATCHER_H_