diff options
author | Subv <subv2112@gmail.com> | 2014-12-04 00:49:51 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2014-12-13 19:40:09 +0100 |
commit | 82c84883a5d10bd6c9a3516fe16b996c5333360e (patch) | |
tree | 79016ba73405e93affa092432c8c0b86bd917aac /src/core/hle/svc.cpp | |
parent | Merge pull request #274 from lioncash/kernel (diff) | |
download | yuzu-82c84883a5d10bd6c9a3516fe16b996c5333360e.tar yuzu-82c84883a5d10bd6c9a3516fe16b996c5333360e.tar.gz yuzu-82c84883a5d10bd6c9a3516fe16b996c5333360e.tar.bz2 yuzu-82c84883a5d10bd6c9a3516fe16b996c5333360e.tar.lz yuzu-82c84883a5d10bd6c9a3516fe16b996c5333360e.tar.xz yuzu-82c84883a5d10bd6c9a3516fe16b996c5333360e.tar.zst yuzu-82c84883a5d10bd6c9a3516fe16b996c5333360e.zip |
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r-- | src/core/hle/svc.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index db0c42e74..107d12156 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp @@ -12,6 +12,7 @@ #include "core/hle/kernel/address_arbiter.h" #include "core/hle/kernel/event.h" #include "core/hle/kernel/mutex.h" +#include "core/hle/kernel/semaphore.h" #include "core/hle/kernel/shared_memory.h" #include "core/hle/kernel/thread.h" @@ -288,6 +289,14 @@ static Result GetThreadId(u32* thread_id, Handle handle) { return result.raw; } +/// Creates a semaphore +static Result CreateSemaphore(Handle* semaphore, s32 initial_count, s32 max_count) { + *semaphore = Kernel::CreateSemaphore(initial_count, max_count); + DEBUG_LOG(SVC, "called initial_count=%d, max_count=%d, created handle=0x%08X", + initial_count, max_count, *semaphore); + return 0; +} + /// Query memory static Result QueryMemory(void* info, void* out, u32 addr) { LOG_ERROR(Kernel_SVC, "(UNIMPLEMENTED) called addr=0x%08X", addr); @@ -366,7 +375,7 @@ const HLE::FunctionDef SVC_Table[] = { {0x12, nullptr, "Run"}, {0x13, HLE::Wrap<CreateMutex>, "CreateMutex"}, {0x14, HLE::Wrap<ReleaseMutex>, "ReleaseMutex"}, - {0x15, nullptr, "CreateSemaphore"}, + {0x15, HLE::Wrap<CreateSemaphore>, "CreateSemaphore"}, {0x16, nullptr, "ReleaseSemaphore"}, {0x17, HLE::Wrap<CreateEvent>, "CreateEvent"}, {0x18, HLE::Wrap<SignalEvent>, "SignalEvent"}, |