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 16 namespace lldb_private { 17 18 /// FreeBSD specific set of Unix signals. 19 class FreeBSDSignals : public UnixSignals 20 { 21 public: 22 FreeBSDSignals(); 23 24 private: 25 void 26 Reset() override; 27 }; 28 29 } // namespace lldb_private 30 31 #endif // liblldb_FreeBSDSignals_H_ 32