blob: abcc8a38669a37fd08f44aca84216c0f67c864f7 [file] [log] [blame]
Chaoren Lin98d0a4b2015-07-14 01:09:28 +00001//===-- 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
15using namespace lldb_private;
16
Kate Stoneb9c1b512016-09-06 20:57:50 +000017GDBRemoteSignals::GDBRemoteSignals() : UnixSignals() { Reset(); }
Chaoren Lin98d0a4b2015-07-14 01:09:28 +000018
19GDBRemoteSignals::GDBRemoteSignals(const lldb::UnixSignalsSP &rhs)
Kate Stoneb9c1b512016-09-06 20:57:50 +000020 : UnixSignals(*rhs) {}
Chaoren Lin98d0a4b2015-07-14 01:09:28 +000021
Kate Stoneb9c1b512016-09-06 20:57:50 +000022void GDBRemoteSignals::Reset() { m_signals.clear(); }