Ed Maste | 9b8d847 | 2014-04-15 20:22:32 +0000 | [diff] [blame] | 1 | //===-- FreeBSDSignals.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_FreeBSDSignals_H_ |
| 11 | #define liblldb_FreeBSDSignals_H_ |
| 12 | |
| 13 | // Project includes |
| 14 | #include "lldb/Target/UnixSignals.h" |
| 15 | |
Chaoren Lin | 98d0a4b | 2015-07-14 01:09:28 +0000 | [diff] [blame] | 16 | namespace lldb_private { |
| 17 | |
Ed Maste | 9b8d847 | 2014-04-15 20:22:32 +0000 | [diff] [blame] | 18 | /// FreeBSD specific set of Unix signals. |
Chaoren Lin | 98d0a4b | 2015-07-14 01:09:28 +0000 | [diff] [blame] | 19 | class FreeBSDSignals : public UnixSignals |
Ed Maste | 9b8d847 | 2014-04-15 20:22:32 +0000 | [diff] [blame] | 20 | { |
| 21 | public: |
| 22 | FreeBSDSignals(); |
| 23 | |
| 24 | private: |
| 25 | void |
Chaoren Lin | 98d0a4b | 2015-07-14 01:09:28 +0000 | [diff] [blame] | 26 | Reset() override; |
Ed Maste | 9b8d847 | 2014-04-15 20:22:32 +0000 | [diff] [blame] | 27 | }; |
| 28 | |
Chaoren Lin | 98d0a4b | 2015-07-14 01:09:28 +0000 | [diff] [blame] | 29 | } // namespace lldb_private |
| 30 | |
Ed Maste | 9b8d847 | 2014-04-15 20:22:32 +0000 | [diff] [blame] | 31 | #endif // liblldb_FreeBSDSignals_H_ |