summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2014-11-26 00:35:20 -0500
committerGravatar bunnei2014-11-26 15:04:07 -0500
commitf985469901f4056a8bb597d1a0bdecb40d7139eb (patch)
tree354f5d5ae591dbc7c877d8e14dbb52189da9f288 /src
parentSVC: SleepThread should yield to the next ready thread. (diff)
downloadyuzu-f985469901f4056a8bb597d1a0bdecb40d7139eb.tar.gz
yuzu-f985469901f4056a8bb597d1a0bdecb40d7139eb.tar.xz
yuzu-f985469901f4056a8bb597d1a0bdecb40d7139eb.zip
SVC: Add debug log to ArbitrateAddress.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 48c8dee1e..43a3cbe03 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -189,6 +189,8 @@ static Result CreateAddressArbiter(u32* arbiter) {
189 189
190/// Arbitrate address 190/// Arbitrate address
191static Result ArbitrateAddress(Handle arbiter, u32 address, u32 type, u32 value, s64 nanoseconds) { 191static Result ArbitrateAddress(Handle arbiter, u32 address, u32 type, u32 value, s64 nanoseconds) {
192 DEBUG_LOG(SVC, "called handle=0x%08X, address=0x%08X, type=0x%08X, value=0x%08X", arbiter,
193 address, type, value);
192 return Kernel::ArbitrateAddress(arbiter, static_cast<Kernel::ArbitrationType>(type), 194 return Kernel::ArbitrateAddress(arbiter, static_cast<Kernel::ArbitrationType>(type),
193 address, value).raw; 195 address, value).raw;
194} 196}