core: hle: kernel: KThread: Replace Suspend with UpdateState & various updates.

- This makes our implementations of these more closely match HOS.
This commit is contained in:
bunnei 2022-01-14 16:31:47 -08:00
parent b6bf119a43
commit 914431487b
2 changed files with 26 additions and 33 deletions

View file

@ -192,9 +192,9 @@ public:
void TrySuspend();
void Continue();
void UpdateState();
void Suspend();
void Continue();
constexpr void SetSyncedIndex(s32 index) {
synced_index = index;