[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / lldb / tools / lldb-vscode / FunctionBreakpoint.h
blob82eec89cd18d2ef18f1b03fb94b48809c8a385e6
1 //===-- FunctionBreakpoint.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 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_TOOLS_LLDB_VSCODE_FUNCTIONBREAKPOINT_H
10 #define LLDB_TOOLS_LLDB_VSCODE_FUNCTIONBREAKPOINT_H
12 #include "BreakpointBase.h"
14 namespace lldb_vscode {
16 struct FunctionBreakpoint : public BreakpointBase {
17 std::string functionName;
19 FunctionBreakpoint() = default;
20 FunctionBreakpoint(const llvm::json::Object &obj);
22 // Set this breakpoint in LLDB as a new breakpoint
23 void SetBreakpoint();
26 } // namespace lldb_vscode
28 #endif