summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-06 22:14:12 +0100
committerbunnei <bunneidev@gmail.com>2018-01-06 22:14:12 +0100
commit5017038ca72cbf061f43a3f30aa7e65e70463901 (patch)
treea9fad792915c27fcbef74d30522a7ac6260185fb /src/core
parentsemaphore: Updates for Switch. (diff)
downloadyuzu-5017038ca72cbf061f43a3f30aa7e65e70463901.tar
yuzu-5017038ca72cbf061f43a3f30aa7e65e70463901.tar.gz
yuzu-5017038ca72cbf061f43a3f30aa7e65e70463901.tar.bz2
yuzu-5017038ca72cbf061f43a3f30aa7e65e70463901.tar.lz
yuzu-5017038ca72cbf061f43a3f30aa7e65e70463901.tar.xz
yuzu-5017038ca72cbf061f43a3f30aa7e65e70463901.tar.zst
yuzu-5017038ca72cbf061f43a3f30aa7e65e70463901.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/kernel/svc.cpp50
-rw-r--r--src/core/hle/kernel/svc_wrap.h5
2 files changed, 54 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 66df42da2..699d842fd 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -13,6 +13,7 @@
#include "core/hle/kernel/object_address_table.h"
#include "core/hle/kernel/process.h"
#include "core/hle/kernel/resource_limit.h"
+#include "core/hle/kernel/semaphore.h"
#include "core/hle/kernel/svc.h"
#include "core/hle/kernel/svc_wrap.h"
#include "core/hle/kernel/sync_object.h"
@@ -471,6 +472,53 @@ static void SleepThread(s64 nanoseconds) {
Core::System::GetInstance().PrepareReschedule();
}
+/// Signal process wide key atomic
+static ResultCode WaitProcessWideKeyAtomic(VAddr mutex_addr, VAddr semaphore_addr,
+ Handle thread_handle, s64 nano_seconds) {
+ LOG_TRACE(Kernel_SVC,
+ "called mutex_addr=%llx, semaphore_addr=%llx, thread_handle=0x%08X, timeout=%d",
+ mutex_addr, semaphore_addr, thread_handle, nano_seconds);
+
+ SharedPtr<Thread> thread = g_handle_table.Get<Thread>(thread_handle);
+ ASSERT(thread);
+
+ SharedPtr<Mutex> mutex = g_object_address_table.Get<Mutex>(mutex_addr);
+ if (!mutex) {
+ // Create a new mutex for the specified address if one does not already exist
+ mutex = Mutex::Create(thread, mutex_addr);
+ mutex->name = Common::StringFromFormat("mutex-%llx", mutex_addr);
+ }
+
+ SharedPtr<Semaphore> semaphore = g_object_address_table.Get<Semaphore>(semaphore_addr);
+ if (!semaphore) {
+ // Create a new semaphore for the specified address if one does not already exist
+ semaphore = Semaphore::Create(semaphore_addr, mutex_addr).Unwrap();
+ semaphore->name = Common::StringFromFormat("semaphore-%llx", semaphore_addr);
+ }
+
+ ASSERT(semaphore->available_count == 0);
+ ASSERT(semaphore->mutex_addr == mutex_addr);
+
+ CASCADE_CODE(WaitSynchronization1(
+ semaphore, thread.get(), nano_seconds,
+ [mutex](ThreadWakeupReason reason, SharedPtr<Thread> thread, SharedPtr<WaitObject> object) {
+ ASSERT(thread->status == THREADSTATUS_WAIT_SYNCH_ANY);
+
+ if (reason == ThreadWakeupReason::Timeout) {
+ thread->SetWaitSynchronizationResult(RESULT_TIMEOUT);
+ return;
+ }
+
+ ASSERT(reason == ThreadWakeupReason::Signal);
+ thread->SetWaitSynchronizationResult(WaitSynchronization1(mutex, thread.get()));
+ thread->SetWaitSynchronizationOutput(thread->GetWaitObjectIndex(object.get()));
+ }));
+
+ mutex->Release(thread.get());
+
+ return RESULT_SUCCESS;
+}
+
/// Signal process wide key
static ResultCode SignalProcessWideKey(VAddr addr, u32 target) {
LOG_WARNING(Kernel_SVC, "(STUBBED) called, address=0x%llx, target=0x%08x", addr, target);
@@ -522,7 +570,7 @@ static const FunctionDef SVC_Table[] = {
{0x19, nullptr, "CancelSynchronization"},
{0x1A, SvcWrap<LockMutex>, "LockMutex"},
{0x1B, SvcWrap<UnlockMutex>, "UnlockMutex"},
- {0x1C, nullptr, "WaitProcessWideKeyAtomic"},
+ {0x1C, SvcWrap<WaitProcessWideKeyAtomic>, "WaitProcessWideKeyAtomic"},
{0x1D, SvcWrap<SignalProcessWideKey>, "SignalProcessWideKey"},
{0x1E, nullptr, "GetSystemTick"},
{0x1F, SvcWrap<ConnectToPort>, "ConnectToPort"},
diff --git a/src/core/hle/kernel/svc_wrap.h b/src/core/hle/kernel/svc_wrap.h
index 65b64cb3c..f8e50a24f 100644
--- a/src/core/hle/kernel/svc_wrap.h
+++ b/src/core/hle/kernel/svc_wrap.h
@@ -85,6 +85,11 @@ void SvcWrap() {
FuncReturn(func(PARAM(1), PARAM(2), (s64)PARAM(3)).raw);
}
+template <ResultCode func(u64, u64, u32, s64)>
+void SvcWrap() {
+ FuncReturn(func(PARAM(0), PARAM(1), (u32)PARAM(2), (s64)PARAM(3)).raw);
+}
+
template <ResultCode func(u64*, u64, u64, u64)>
void SvcWrap() {
u64 param_1 = 0;