From af6d1735afe4b63d13ddb73f532b4a3309f527c2 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 5 Jul 2025 10:24:19 +0200 Subject: LibDebugger: refactor! Breaking changes inside the debugger contracts. Signed-off-by: Amlal El Mahrouss --- dev/LibDebugger/POSIXMachContract.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev/LibDebugger/POSIXMachContract.h') diff --git a/dev/LibDebugger/POSIXMachContract.h b/dev/LibDebugger/POSIXMachContract.h index 1d7561a..98085a2 100644 --- a/dev/LibDebugger/POSIXMachContract.h +++ b/dev/LibDebugger/POSIXMachContract.h @@ -90,7 +90,7 @@ class POSIXMachContract : public DebuggerContract { m_path = path; } - BOOL Breakpoint(std::string symbol) noexcept override { + BOOL BreakAt(std::string symbol) noexcept override { if (!m_path.empty() && std::filesystem::exists(m_path) && std::filesystem::is_regular_file(m_path)) { auto handle = dlopen(m_path.c_str(), RTLD_LAZY); -- cgit v1.2.3