Chaoren Lin | 98d0a4b | 2015-07-14 01:09:28 +0000 | [diff] [blame] | 1 | //===-- GDBRemoteSignals.cpp ------------------------------------*- 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 | // C++ Includes |
| 11 | // Other libraries and framework includes |
| 12 | // Project includes |
| 13 | #include "GDBRemoteSignals.h" |
| 14 | |
| 15 | using namespace lldb_private; |
| 16 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame^] | 17 | GDBRemoteSignals::GDBRemoteSignals() : UnixSignals() { Reset(); } |
Chaoren Lin | 98d0a4b | 2015-07-14 01:09:28 +0000 | [diff] [blame] | 18 | |
| 19 | GDBRemoteSignals::GDBRemoteSignals(const lldb::UnixSignalsSP &rhs) |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame^] | 20 | : UnixSignals(*rhs) {} |
Chaoren Lin | 98d0a4b | 2015-07-14 01:09:28 +0000 | [diff] [blame] | 21 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame^] | 22 | void GDBRemoteSignals::Reset() { m_signals.clear(); } |