diff options
| author | Mai M <mathew1800@gmail.com> | 2022-06-01 00:19:49 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-01 00:19:49 -0400 |
| commit | de2f2e5140eb85311e0fd844c580d6726adf7e03 (patch) | |
| tree | 10f0e96a0689b2edb823f5833ff388ac9c645229 /src/yuzu/bootmanager.h | |
| parent | 72b34650f9d11ff4bc72abc88799933da2445129 (diff) | |
| parent | fb4b3c127f7c390358d7f4cadd2f58de116fec48 (diff) | |
Merge pull request #8394 from liamwhite/debugger
core/debugger: Implement new GDB stub debugger
Diffstat (limited to 'src/yuzu/bootmanager.h')
| -rw-r--r-- | src/yuzu/bootmanager.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/yuzu/bootmanager.h b/src/yuzu/bootmanager.h index 841816564..87c559e7a 100644 --- a/src/yuzu/bootmanager.h +++ b/src/yuzu/bootmanager.h @@ -55,15 +55,6 @@ public: void run() override; /** - * Steps the emulation thread by a single CPU instruction (if the CPU is not already running) - * @note This function is thread-safe - */ - void ExecStep() { - exec_step = true; - running_cv.notify_all(); - } - - /** * Sets whether the emulation thread is running or not * @param running Boolean value, set the emulation thread to running if true * @note This function is thread-safe @@ -99,7 +90,6 @@ public: } private: - bool exec_step = false; bool running = false; std::stop_source stop_source; std::mutex running_mutex; |
