diff options
| author | Liam <byteslice@airmail.cc> | 2022-06-18 16:54:33 -0400 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2022-06-18 16:54:33 -0400 |
| commit | 24d7aaf43c6b243f7123401545527ed7a25a3f26 (patch) | |
| tree | ae068bba2c935e18d3e05557d1f581765114ad94 /src/core/hle/kernel/k_thread.h | |
| parent | 5b2b15091f38eb169648ddad4ae32f03354d19cd (diff) | |
kernel: wait for threads to stop on pause
Diffstat (limited to 'src/core/hle/kernel/k_thread.h')
| -rw-r--r-- | src/core/hle/kernel/k_thread.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h index f4d83f99a..8c1f8a344 100644 --- a/src/core/hle/kernel/k_thread.h +++ b/src/core/hle/kernel/k_thread.h @@ -207,6 +207,8 @@ public: void Continue(); + void WaitUntilSuspended(); + constexpr void SetSyncedIndex(s32 index) { synced_index = index; } |
