summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2020-03-03 22:19:44 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2020-06-27 17:35:25 +0200
commite4b175ade205095e7cc89e0f60c902c708d7d767 (patch)
tree7f226dc31d498c7b9ad6921d328346932b4fa1e1 /src/core/hle/kernel/svc.cpp
parentScheduler: Correct Select Threads Step 2. (diff)
downloadyuzu-e4b175ade205095e7cc89e0f60c902c708d7d767.tar
yuzu-e4b175ade205095e7cc89e0f60c902c708d7d767.tar.gz
yuzu-e4b175ade205095e7cc89e0f60c902c708d7d767.tar.bz2
yuzu-e4b175ade205095e7cc89e0f60c902c708d7d767.tar.lz
yuzu-e4b175ade205095e7cc89e0f60c902c708d7d767.tar.xz
yuzu-e4b175ade205095e7cc89e0f60c902c708d7d767.tar.zst
yuzu-e4b175ade205095e7cc89e0f60c902c708d7d767.zip
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 5e9dd43bf..718462b2b 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1691,7 +1691,6 @@ static ResultCode WaitForAddress(Core::System& system, VAddr address, u32 type,
LOG_TRACE(Kernel_SVC, "called, address=0x{:X}, type=0x{:X}, value=0x{:X}, timeout={}", address,
type, value, timeout);
- UNIMPLEMENTED();
// If the passed address is a kernel virtual address, return invalid memory state.
if (Core::Memory::IsKernelVirtualAddress(address)) {
LOG_ERROR(Kernel_SVC, "Address is a kernel virtual address, address={:016X}", address);
@@ -1717,8 +1716,6 @@ static ResultCode SignalToAddress(Core::System& system, VAddr address, u32 type,
LOG_TRACE(Kernel_SVC, "called, address=0x{:X}, type=0x{:X}, value=0x{:X}, num_to_wake=0x{:X}",
address, type, value, num_to_wake);
- UNIMPLEMENTED();
-
// If the passed address is a kernel virtual address, return invalid memory state.
if (Core::Memory::IsKernelVirtualAddress(address)) {
LOG_ERROR(Kernel_SVC, "Address is a kernel virtual address, address={:016X}", address);