summaryrefslogtreecommitdiffhomepage
path: root/dev/LibDebugger/POSIX.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-23 20:58:15 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-23 20:58:15 +0100
commitd8cf1ef181caa49bb44ed521ed063cfed3eca775 (patch)
treec6b17ffb5d122ef0d5f00beabde92fe4e0450c32 /dev/LibDebugger/POSIX.h
parent4b0de97035d2a750c4a2073a1992e2eff68926d0 (diff)
feat(dbg): Avoid breakpoint when kPID is not set (kPID = 0)
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/LibDebugger/POSIX.h')
-rw-r--r--dev/LibDebugger/POSIX.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/dev/LibDebugger/POSIX.h b/dev/LibDebugger/POSIX.h
index 52af66e..b863f58 100644
--- a/dev/LibDebugger/POSIX.h
+++ b/dev/LibDebugger/POSIX.h
@@ -34,17 +34,17 @@ namespace LibDebugger::POSIX
typedef char* CAddr;
#endif
- /// \brief Debugger engine interface class in C++
+ /// \brief LocalDebuggerPOSIX engine interface class in C++
/// \author Amlal El Mahrouss
- class Debugger final
+ class LocalDebuggerPOSIX final
{
public:
- explicit Debugger() = default;
- ~Debugger() = default;
+ explicit LocalDebuggerPOSIX() = default;
+ ~LocalDebuggerPOSIX() = default;
public:
- Debugger& operator=(const Debugger&) = default;
- Debugger(const Debugger&) = default;
+ LocalDebuggerPOSIX& operator=(const LocalDebuggerPOSIX&) = default;
+ LocalDebuggerPOSIX(const LocalDebuggerPOSIX&) = default;
public:
bool Attach(pid_t pid)