diff options
author | bunnei <bunneidev@gmail.com> | 2014-11-30 08:41:49 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-11-30 08:41:49 -0500 |
commit | a5afad09378dab8978e8e4149337aebf70891668 (patch) | |
tree | 8affb19959e7b78fdb0b1aea80569b2ba30b1863 /src/core/hle/svc.cpp | |
parent | 2ad9ad9297d2f83b13667d885084c1a3e6daab3a (diff) | |
parent | de851ba1a18ce2439a0b8ad46081990df377347c (diff) |
Merge pull request #226 from bunnei/svc-and-thread-fixes
Svc and thread fixes
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r-- | src/core/hle/svc.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 87d768856..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; } @@ -331,6 +333,9 @@ static Result ClearEvent(Handle evt) { /// Sleep the current thread static void SleepThread(s64 nanoseconds) { DEBUG_LOG(SVC, "called nanoseconds=%lld", nanoseconds); + + // Check for next thread to schedule + HLE::Reschedule(__func__); } /// This returns the total CPU ticks elapsed since the CPU was powered-on |