summaryrefslogtreecommitdiffhomepage
path: root/dev/DebuggerKit/POSIXMachContract.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-28 09:00:15 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-08-28 09:00:15 +0200
commita7b43769b2f6dae5abdda4cb2649e43b02fbeea7 (patch)
tree3d32f48d0c181fa7cc31173b122dbfc885c67217 /dev/DebuggerKit/POSIXMachContract.h
parent4ffac4a285e6bdd6f972573598fd7f8763edf78e (diff)
feat: v0.0.3e1 (Ogre)v0.0.3e1-release
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/DebuggerKit/POSIXMachContract.h')
-rw-r--r--dev/DebuggerKit/POSIXMachContract.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/DebuggerKit/POSIXMachContract.h b/dev/DebuggerKit/POSIXMachContract.h
index b04a13a..931852a 100644
--- a/dev/DebuggerKit/POSIXMachContract.h
+++ b/dev/DebuggerKit/POSIXMachContract.h
@@ -93,7 +93,7 @@ class POSIXMachContract : public DebuggerContract {
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(), RTDK_LAZY);
+ auto handle = dlopen(m_path.c_str(), RTLD_LAZY);
if (handle == nullptr) {
return false;