summaryrefslogtreecommitdiffstats
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-11-26 06:35:20 +0100
committerbunnei <bunneidev@gmail.com>2014-11-26 21:04:07 +0100
commitf985469901f4056a8bb597d1a0bdecb40d7139eb (patch)
tree354f5d5ae591dbc7c877d8e14dbb52189da9f288 /src/core/hle/svc.cpp
parentSVC: SleepThread should yield to the next ready thread. (diff)
downloadyuzu-f985469901f4056a8bb597d1a0bdecb40d7139eb.tar
yuzu-f985469901f4056a8bb597d1a0bdecb40d7139eb.tar.gz
yuzu-f985469901f4056a8bb597d1a0bdecb40d7139eb.tar.bz2
yuzu-f985469901f4056a8bb597d1a0bdecb40d7139eb.tar.lz
yuzu-f985469901f4056a8bb597d1a0bdecb40d7139eb.tar.xz
yuzu-f985469901f4056a8bb597d1a0bdecb40d7139eb.tar.zst
yuzu-f985469901f4056a8bb597d1a0bdecb40d7139eb.zip
Diffstat (limited to 'src/core/hle/svc.cpp')
-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) {
/// Arbitrate address
static Result ArbitrateAddress(Handle arbiter, u32 address, u32 type, u32 value, s64 nanoseconds) {
+ DEBUG_LOG(SVC, "called handle=0x%08X, address=0x%08X, type=0x%08X, value=0x%08X", arbiter,
+ address, type, value);
return Kernel::ArbitrateAddress(arbiter, static_cast<Kernel::ArbitrationType>(type),
address, value).raw;
}