blob: bbb631a14090e5411681ebcbf7c0fd4d91847ef2 [file] [log] [blame]
Chaoren Lin98d0a4b2015-07-14 01:09:28 +00001//===-- GDBRemoteSignals.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_GDBRemoteSignals_H_
11#define liblldb_GDBRemoteSignals_H_
12
13// C Includes
14// C++ Includes
15// Other libraries and framework includes
16// Project includes
17#include "lldb/Target/UnixSignals.h"
18
19namespace lldb_private {
20
21/// Empty set of Unix signals to be filled by PlatformRemoteGDBServer
22class GDBRemoteSignals : public UnixSignals
23{
24public:
25 GDBRemoteSignals();
26
27 GDBRemoteSignals(const lldb::UnixSignalsSP &rhs);
28
29private:
30 void
31 Reset() override;
32};
33
34} // namespace lldb_private
35
36#endif // liblldb_GDBRemoteSignals_H_