diff options
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index b9022feae..e308b9c7b 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -155,8 +155,10 @@ void Thread::WakeAfterDelay(s64 nanoseconds) { | |||
| 155 | if (nanoseconds == -1) | 155 | if (nanoseconds == -1) |
| 156 | return; | 156 | return; |
| 157 | 157 | ||
| 158 | CoreTiming::ScheduleEvent(CoreTiming::nsToCycles(nanoseconds), ThreadWakeupEventType, | 158 | // This function might be called from any thread so we have to be cautious and use the |
| 159 | callback_handle); | 159 | // thread-safe version of ScheduleEvent. |
| 160 | CoreTiming::ScheduleEventThreadsafe(CoreTiming::nsToCycles(nanoseconds), ThreadWakeupEventType, | ||
| 161 | callback_handle); | ||
| 160 | } | 162 | } |
| 161 | 163 | ||
| 162 | void Thread::CancelWakeupTimer() { | 164 | void Thread::CancelWakeupTimer() { |