diff options
Diffstat (limited to 'src/core/debugger/debugger.h')
| -rw-r--r-- | src/core/debugger/debugger.h | 8 |
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 | ||
| 10 | namespace Kernel { | 10 | namespace Kernel { |
| 11 | class KThread; | 11 | class KThread; |
| 12 | } | 12 | struct DebugWatchpoint; |
| 13 | } // namespace Kernel | ||
| 13 | 14 | ||
| 14 | namespace Core { | 15 | namespace Core { |
| 15 | class System; | 16 | class 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 | |||
| 43 | private: | 49 | private: |
| 44 | std::unique_ptr<DebuggerImpl> impl; | 50 | std::unique_ptr<DebuggerImpl> impl; |
| 45 | }; | 51 | }; |