]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - source/Plugins/Process/Utility/MipsLinuxSignals.h
Vendor import of lldb trunk r290819:
[FreeBSD/FreeBSD.git] / source / Plugins / Process / Utility / MipsLinuxSignals.h
1 //===-- MipsLinuxSignals.h ------------------------------------------*- C++
2 //-*-===//
3 //
4 //                     The LLVM Compiler Infrastructure
5 //
6 // This file is distributed under the University of Illinois Open Source
7 // License. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
10
11 #ifndef liblldb_MipsLinuxSignals_H_
12 #define liblldb_MipsLinuxSignals_H_
13
14 // C Includes
15 // C++ Includes
16 // Other libraries and framework includes
17 // Project includes
18 #include "lldb/Target/UnixSignals.h"
19
20 namespace lldb_private {
21
22 /// Linux specific set of Unix signals.
23 class MipsLinuxSignals : public UnixSignals {
24 public:
25   MipsLinuxSignals();
26
27 private:
28   void Reset() override;
29 };
30
31 } // namespace lldb_private
32
33 #endif // liblldb_MipsLinuxSignals_H_