Path: blob/main/contrib/llvm-project/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h
39644 views
//===-- GDBRemoteSignals.h --------------------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_GDBREMOTESIGNALS_H9#define LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_GDBREMOTESIGNALS_H1011#include "lldb/Target/UnixSignals.h"1213namespace lldb_private {1415/// Initially carries signals defined by the GDB Remote Serial Protocol.16/// Can be filled with platform's signals through PlatformRemoteGDBServer.17class GDBRemoteSignals : public UnixSignals {18public:19GDBRemoteSignals();2021GDBRemoteSignals(const lldb::UnixSignalsSP &rhs);2223private:24void Reset() override;25};2627} // namespace lldb_private2829#endif // LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_GDBREMOTESIGNALS_H303132