summaryrefslogtreecommitdiff
path: root/src/core/debugger/debugger.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/debugger/debugger.h')
-rw-r--r--src/core/debugger/debugger.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/debugger/debugger.h b/src/core/debugger/debugger.h
index f9738ca3d..b2f503376 100644
--- a/src/core/debugger/debugger.h
+++ b/src/core/debugger/debugger.h
@@ -9,7 +9,8 @@
9 9
10namespace Kernel { 10namespace Kernel {
11class KThread; 11class KThread;
12} 12struct DebugWatchpoint;
13} // namespace Kernel
13 14
14namespace Core { 15namespace Core {
15class System; 16class System;
@@ -40,6 +41,11 @@ public:
40 */ 41 */
41 void NotifyShutdown(); 42 void NotifyShutdown();
42 43
44 /*
45 * Notify the debugger that the given thread has stopped due to hitting a watchpoint.
46 */
47 bool NotifyThreadWatchpoint(Kernel::KThread* thread, const Kernel::DebugWatchpoint& watch);
48
43private: 49private:
44 std::unique_ptr<DebuggerImpl> impl; 50 std::unique_ptr<DebuggerImpl> impl;
45}; 51};