]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h
Add LLVM openmp trunk r351319 (just before the release_80 branch point)
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / 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 #include "lldb/Target/UnixSignals.h"
15
16 namespace lldb_private {
17
18 /// Linux specific set of Unix signals.
19 class MipsLinuxSignals : public UnixSignals {
20 public:
21   MipsLinuxSignals();
22
23 private:
24   void Reset() override;
25 };
26
27 } // namespace lldb_private
28
29 #endif // liblldb_MipsLinuxSignals_H_