From 49d2188f6fb71b54532f089a2c9439665a327ccd Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 5 Mar 2019 19:10:17 -0800 Subject: [PATCH] add CancelSync thread primitive --- include/stratosphere/hossynch.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/stratosphere/hossynch.hpp b/include/stratosphere/hossynch.hpp index 6a393a4f..dd7d6b16 100644 --- a/include/stratosphere/hossynch.hpp +++ b/include/stratosphere/hossynch.hpp @@ -279,4 +279,8 @@ class HosThread { } return rc; } + + Result CancelSynchronization() { + return svcCancelSynchronization(this->thr.handle); + } }; \ No newline at end of file