summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorB3n30 <benediktthomas@gmail.com>2018-08-13 13:56:41 +0200
committerB3n30 <benediktthomas@gmail.com>2018-08-13 13:56:41 +0200
commiteab35c8235955a4f433a42c93ef92b1a44b9c033 (patch)
tree7f2a69b135356f49b7565004e7b277fa6d375c8b /src/core/hle/kernel/thread.cpp
parentMerge pull request #1032 from lioncash/sanitize (diff)
downloadyuzu-eab35c8235955a4f433a42c93ef92b1a44b9c033.tar
yuzu-eab35c8235955a4f433a42c93ef92b1a44b9c033.tar.gz
yuzu-eab35c8235955a4f433a42c93ef92b1a44b9c033.tar.bz2
yuzu-eab35c8235955a4f433a42c93ef92b1a44b9c033.tar.lz
yuzu-eab35c8235955a4f433a42c93ef92b1a44b9c033.tar.xz
yuzu-eab35c8235955a4f433a42c93ef92b1a44b9c033.tar.zst
yuzu-eab35c8235955a4f433a42c93ef92b1a44b9c033.zip
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
-rw-r--r--src/core/hle/kernel/thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index a1a7867ce..cf4f94822 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -167,7 +167,7 @@ void Thread::WakeAfterDelay(s64 nanoseconds) {
}
void Thread::CancelWakeupTimer() {
- CoreTiming::UnscheduleEvent(ThreadWakeupEventType, callback_handle);
+ CoreTiming::UnscheduleEventThreadsafe(ThreadWakeupEventType, callback_handle);
}
static boost::optional<s32> GetNextProcessorId(u64 mask) {