diff options
| author | 2022-10-05 18:53:42 -0700 | |
|---|---|---|
| committer | 2022-10-05 18:53:42 -0700 | |
| commit | d55096ce85d3f24f57f84e26c6256c42956b858a (patch) | |
| tree | 8ea9756f0249505b9928b312ae64fad926433bc0 /src/core/debugger/debugger.cpp | |
| parent | Merge pull request #9015 from german77/amiibo-rewrite (diff) | |
| parent | common: remove "yuzu:" prefix from thread names (diff) | |
| download | yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.gz yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.xz yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.zip | |
Merge pull request #9013 from liamwhite/spinning-a-yarn
common: remove "yuzu:" prefix from thread names
Diffstat (limited to 'src/core/debugger/debugger.cpp')
| -rw-r--r-- | src/core/debugger/debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/debugger/debugger.cpp b/src/core/debugger/debugger.cpp index e42bdd17d..339f971e6 100644 --- a/src/core/debugger/debugger.cpp +++ b/src/core/debugger/debugger.cpp | |||
| @@ -140,7 +140,7 @@ private: | |||
| 140 | } | 140 | } |
| 141 | 141 | ||
| 142 | void ThreadLoop(std::stop_token stop_token) { | 142 | void ThreadLoop(std::stop_token stop_token) { |
| 143 | Common::SetCurrentThreadName("yuzu:Debugger"); | 143 | Common::SetCurrentThreadName("Debugger"); |
| 144 | 144 | ||
| 145 | // Set up the client signals for new data. | 145 | // Set up the client signals for new data. |
| 146 | AsyncReceiveInto(signal_pipe, pipe_data, [&](auto d) { PipeData(d); }); | 146 | AsyncReceiveInto(signal_pipe, pipe_data, [&](auto d) { PipeData(d); }); |