diff options
| author | 2022-05-31 14:37:37 -0400 | |
|---|---|---|
| committer | 2022-06-01 02:15:15 -0400 | |
| commit | 989d4a7a41f449af0ea09e34bee331a3a3ac8170 (patch) | |
| tree | df24bd9d7e6942b939e3ea42d08c0d65006e539f /src/core/debugger/debugger.h | |
| parent | core/debugger: Implement new GDB stub debugger (diff) | |
| download | yuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.tar.gz yuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.tar.xz yuzu-989d4a7a41f449af0ea09e34bee331a3a3ac8170.zip | |
core/debugger: Improved stepping mechanism and misc fixes
Diffstat (limited to 'src/core/debugger/debugger.h')
| -rw-r--r-- | src/core/debugger/debugger.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/debugger/debugger.h b/src/core/debugger/debugger.h index 7acd11815..ea36c6ab2 100644 --- a/src/core/debugger/debugger.h +++ b/src/core/debugger/debugger.h | |||
| @@ -35,11 +35,6 @@ public: | |||
| 35 | */ | 35 | */ |
| 36 | bool NotifyThreadStopped(Kernel::KThread* thread); | 36 | bool NotifyThreadStopped(Kernel::KThread* thread); |
| 37 | 37 | ||
| 38 | /** | ||
| 39 | * Returns whether a step is in progress. | ||
| 40 | */ | ||
| 41 | bool IsStepping() const; | ||
| 42 | |||
| 43 | private: | 38 | private: |
| 44 | std::unique_ptr<DebuggerImpl> impl; | 39 | std::unique_ptr<DebuggerImpl> impl; |
| 45 | }; | 40 | }; |