]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h
Update to version 3.1.1
[FreeBSD/FreeBSD.git] / contrib / llvm-project / lldb / source / Plugins / Process / Utility / GDBRemoteSignals.h
1 //===-- GDBRemoteSignals.h --------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 #ifndef liblldb_GDBRemoteSignals_H_
10 #define liblldb_GDBRemoteSignals_H_
11
12 #include "lldb/Target/UnixSignals.h"
13
14 namespace lldb_private {
15
16 /// Empty set of Unix signals to be filled by PlatformRemoteGDBServer
17 class GDBRemoteSignals : public UnixSignals {
18 public:
19   GDBRemoteSignals();
20
21   GDBRemoteSignals(const lldb::UnixSignalsSP &rhs);
22
23 private:
24   void Reset() override;
25 };
26
27 } // namespace lldb_private
28
29 #endif // liblldb_GDBRemoteSignals_H_