kern: implement SvcCancelSynchronization

This commit is contained in:
Michael Scire 2020-07-20 02:27:53 -07:00
commit 184c2560f2
3 changed files with 35 additions and 2 deletions

View file

@ -390,6 +390,8 @@ namespace ams::kern {
return this->wait_result;
}
void WaitCancel();
bool IsWaitCancelled() const { return this->wait_cancelled; }
void ClearWaitCancelled() { this->wait_cancelled = false; }