diff options
| author | 2021-10-16 00:20:19 +0200 | |
|---|---|---|
| committer | 2021-10-16 00:23:27 +0200 | |
| commit | 53cf91d151d1e3d289917b63cf17ca254674f1ce (patch) | |
| tree | b98a87d68243e1f9358c10a8870dd296c0aa5eb1 /src/core/core.h | |
| parent | Suspend temporally (diff) | |
| download | yuzu-53cf91d151d1e3d289917b63cf17ca254674f1ce.tar.gz yuzu-53cf91d151d1e3d289917b63cf17ca254674f1ce.tar.xz yuzu-53cf91d151d1e3d289917b63cf17ca254674f1ce.zip | |
NvHost/Core: Address Feedback.
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/core.h b/src/core/core.h index 8b21816cc..1cfe1bba6 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | #include <cstddef> | 7 | #include <cstddef> |
| 8 | #include <functional> | 8 | #include <functional> |
| 9 | #include <memory> | 9 | #include <memory> |
| 10 | #include <mutex> | ||
| 10 | #include <string> | 11 | #include <string> |
| 11 | #include <vector> | 12 | #include <vector> |
| 12 | 13 | ||
| @@ -160,7 +161,8 @@ public: | |||
| 160 | /// Shutdown the emulated system. | 161 | /// Shutdown the emulated system. |
| 161 | void Shutdown(); | 162 | void Shutdown(); |
| 162 | 163 | ||
| 163 | void stallForGPU(bool pause); | 164 | std::unique_lock<std::mutex> StallCPU(); |
| 165 | void UnstallCPU(); | ||
| 164 | 166 | ||
| 165 | /** | 167 | /** |
| 166 | * Load an executable application. | 168 | * Load an executable application. |