]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.h
MFV r337014:
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / Plugins / Process / Utility / NetBSDSignals.h
1 //===-- NetBSDSignals.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_NetBSDSignals_H_
11 #define liblldb_NetBSDSignals_H_
12
13 // Project includes
14 #include "lldb/Target/UnixSignals.h"
15
16 namespace lldb_private {
17
18 /// NetBSD specific set of Unix signals.
19 class NetBSDSignals : public UnixSignals {
20 public:
21   NetBSDSignals();
22
23 private:
24   void Reset() override;
25 };
26
27 } // namespace lldb_private
28
29 #endif // liblldb_NetBSDSignals_H_