diff options
author | Subv <subv2112@gmail.com> | 2014-12-04 05:22:06 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2014-12-04 06:25:35 +0100 |
commit | 029ff9f1fd013ec46f3d61510c5f95f05bca698e (patch) | |
tree | 17177b27e64fa60c0c1847ba02e8ae187f0eebad /src/core/hle/svc.cpp | |
parent | Merge pull request #236 from rohit-n/sign-compare (diff) | |
download | yuzu-029ff9f1fd013ec46f3d61510c5f95f05bca698e.tar yuzu-029ff9f1fd013ec46f3d61510c5f95f05bca698e.tar.gz yuzu-029ff9f1fd013ec46f3d61510c5f95f05bca698e.tar.bz2 yuzu-029ff9f1fd013ec46f3d61510c5f95f05bca698e.tar.lz yuzu-029ff9f1fd013ec46f3d61510c5f95f05bca698e.tar.xz yuzu-029ff9f1fd013ec46f3d61510c5f95f05bca698e.tar.zst yuzu-029ff9f1fd013ec46f3d61510c5f95f05bca698e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/svc.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 43a3cbe03..a5805ed05 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp @@ -281,10 +281,11 @@ static Result ReleaseMutex(Handle handle) { return res.raw; } -/// Get current thread ID -static Result GetThreadId(u32* thread_id, Handle thread) { - ERROR_LOG(SVC, "(UNIMPLEMENTED) called thread=0x%08X", thread); - return 0; +/// Get the ID for the specified thread. +static Result GetThreadId(u32* thread_id, Handle handle) { + DEBUG_LOG(SVC, "called thread=0x%08X", handle); + ResultCode result = Kernel::GetThreadId(thread_id, handle); + return result.raw; } /// Query memory |