summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/semaphore.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-22 14:07:22 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-01-09 07:02:15 +0100
commit9bf8462b96d34b30f62b8aca745dd558e7f0a450 (patch)
tree32606d5176a82daa4e59bb47bede34d4a941780a /src/core/hle/kernel/semaphore.cpp
parentKernel: Move Thread's definition to the header file (diff)
downloadyuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.tar
yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.tar.gz
yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.tar.bz2
yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.tar.lz
yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.tar.xz
yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.tar.zst
yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.zip
Diffstat (limited to 'src/core/hle/kernel/semaphore.cpp')
-rw-r--r--src/core/hle/kernel/semaphore.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/hle/kernel/semaphore.cpp b/src/core/hle/kernel/semaphore.cpp
index 6bc8066a6..d7eeaa3da 100644
--- a/src/core/hle/kernel/semaphore.cpp
+++ b/src/core/hle/kernel/semaphore.cpp
@@ -37,8 +37,8 @@ public:
bool wait = !IsAvailable();
if (wait) {
- Kernel::WaitCurrentThread(WAITTYPE_SEMA, GetHandle());
- waiting_threads.push(GetCurrentThreadHandle());
+ Kernel::WaitCurrentThread(WAITTYPE_SEMA, this);
+ waiting_threads.push(GetCurrentThread()->GetHandle());
} else {
--available_count;
}
@@ -84,7 +84,9 @@ ResultCode ReleaseSemaphore(s32* count, Handle handle, s32 release_count) {
// Notify some of the threads that the semaphore has been released
// stop once the semaphore is full again or there are no more waiting threads
while (!semaphore->waiting_threads.empty() && semaphore->IsAvailable()) {
- Kernel::ResumeThreadFromWait(semaphore->waiting_threads.front());
+ Thread* thread = Kernel::g_handle_table.Get<Thread>(semaphore->waiting_threads.front());
+ if (thread != nullptr)
+ thread->ResumeFromWait();
semaphore->waiting_threads.pop();
--semaphore->available_count;
}