diff options
| author | 2022-06-16 02:41:12 +0200 | |
|---|---|---|
| committer | 2022-06-16 02:41:12 +0200 | |
| commit | f86b770ff75efff029fa82b959b3f33eca1750fe (patch) | |
| tree | 8c1aa046c96d7f943288ecb3455f4091cdc31a09 /src/core/core.h | |
| parent | Merge pull request #8460 from Morph1984/bounded-q (diff) | |
| parent | kernel: implement KProcess suspension (diff) | |
| download | yuzu-f86b770ff75efff029fa82b959b3f33eca1750fe.tar.gz yuzu-f86b770ff75efff029fa82b959b3f33eca1750fe.tar.xz yuzu-f86b770ff75efff029fa82b959b3f33eca1750fe.zip | |
Merge pull request #8457 from liamwhite/kprocess-suspend
kernel: implement KProcess suspension
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.h b/src/core/core.h index 5c367349e..60efe4410 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -163,8 +163,8 @@ public: | |||
| 163 | /// Forcibly detach the debugger if it is running. | 163 | /// Forcibly detach the debugger if it is running. |
| 164 | void DetachDebugger(); | 164 | void DetachDebugger(); |
| 165 | 165 | ||
| 166 | std::unique_lock<std::mutex> StallCPU(); | 166 | std::unique_lock<std::mutex> StallProcesses(); |
| 167 | void UnstallCPU(); | 167 | void UnstallProcesses(); |
| 168 | 168 | ||
| 169 | /** | 169 | /** |
| 170 | * Initialize the debugger. | 170 | * Initialize the debugger. |