blob: a5041b50eea399d5900b10f75944f69208c0c575 [file] [log] [blame]
Mohit K. Bhakkad2c2acf92015-04-09 07:12:15 +00001//===-- MipsLinuxSignals.h ------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_MipsLinuxSignals_H_
11#define liblldb_MipsLinuxSignals_H_
12
13// C Includes
14// C++ Includes
15// Other libraries and framework includes
16// Project includes
17#include "lldb/Target/UnixSignals.h"
18
19namespace lldb_private {
Mohit K. Bhakkad2c2acf92015-04-09 07:12:15 +000020
Chaoren Lin98d0a4b2015-07-14 01:09:28 +000021/// Linux specific set of Unix signals.
22class MipsLinuxSignals : public UnixSignals
23{
24public:
25 MipsLinuxSignals();
Mohit K. Bhakkad2c2acf92015-04-09 07:12:15 +000026
Chaoren Lin98d0a4b2015-07-14 01:09:28 +000027private:
28 void
29 Reset() override;
30};
Mohit K. Bhakkad2c2acf92015-04-09 07:12:15 +000031
32} // namespace lldb_private
Mohit K. Bhakkad2c2acf92015-04-09 07:12:15 +000033
Chaoren Lin98d0a4b2015-07-14 01:09:28 +000034#endif // liblldb_MipsLinuxSignals_H_