summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2019-07-17 22:05:08 -0400
committerGravatar FernandoS272019-07-17 22:05:47 -0400
commit5e457bf258f19e5b66b2bb2c3c655085a603b118 (patch)
tree2f62b318f0d80a5cfa8d7b4c6e4450718100dd0d /src/core/hle/kernel/svc.cpp
parentMerge pull request #2740 from lioncash/bra (diff)
downloadyuzu-5e457bf258f19e5b66b2bb2c3c655085a603b118.tar.gz
yuzu-5e457bf258f19e5b66b2bb2c3c655085a603b118.tar.xz
yuzu-5e457bf258f19e5b66b2bb2c3c655085a603b118.zip
Kernel: Downgrade WaitForAddress and SignalToAddress messages to Trace.
This messages were originally set as warnning since few games used these svcs and it was needed for debugging. This is no longer the case.
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index a46eed3da..0687839ff 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1739,8 +1739,8 @@ static ResultCode SignalProcessWideKey(Core::System& system, VAddr condition_var
1739// Wait for an address (via Address Arbiter) 1739// Wait for an address (via Address Arbiter)
1740static ResultCode WaitForAddress(Core::System& system, VAddr address, u32 type, s32 value, 1740static ResultCode WaitForAddress(Core::System& system, VAddr address, u32 type, s32 value,
1741 s64 timeout) { 1741 s64 timeout) {
1742 LOG_WARNING(Kernel_SVC, "called, address=0x{:X}, type=0x{:X}, value=0x{:X}, timeout={}", 1742 LOG_TRACE(Kernel_SVC, "called, address=0x{:X}, type=0x{:X}, value=0x{:X}, timeout={}", address,
1743 address, type, value, timeout); 1743 type, value, timeout);
1744 1744
1745 // If the passed address is a kernel virtual address, return invalid memory state. 1745 // If the passed address is a kernel virtual address, return invalid memory state.
1746 if (Memory::IsKernelVirtualAddress(address)) { 1746 if (Memory::IsKernelVirtualAddress(address)) {
@@ -1762,8 +1762,8 @@ static ResultCode WaitForAddress(Core::System& system, VAddr address, u32 type,
1762// Signals to an address (via Address Arbiter) 1762// Signals to an address (via Address Arbiter)
1763static ResultCode SignalToAddress(Core::System& system, VAddr address, u32 type, s32 value, 1763static ResultCode SignalToAddress(Core::System& system, VAddr address, u32 type, s32 value,
1764 s32 num_to_wake) { 1764 s32 num_to_wake) {
1765 LOG_WARNING(Kernel_SVC, "called, address=0x{:X}, type=0x{:X}, value=0x{:X}, num_to_wake=0x{:X}", 1765 LOG_TRACE(Kernel_SVC, "called, address=0x{:X}, type=0x{:X}, value=0x{:X}, num_to_wake=0x{:X}",
1766 address, type, value, num_to_wake); 1766 address, type, value, num_to_wake);
1767 1767
1768 // If the passed address is a kernel virtual address, return invalid memory state. 1768 // If the passed address is a kernel virtual address, return invalid memory state.
1769 if (Memory::IsKernelVirtualAddress(address)) { 1769 if (Memory::IsKernelVirtualAddress(address)) {