Browse Source
Merge pull request #5245 from ameerj/sleepthread-log
svc: demote SleepThread log to LOG_TRACE
pull/15/merge
LC
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/hle/kernel/svc.cpp
|
|
|
@ -1583,7 +1583,7 @@ static void ExitThread32(Core::System& system) { |
|
|
|
|
|
|
|
/// Sleep the current thread
|
|
|
|
static void SleepThread(Core::System& system, s64 nanoseconds) { |
|
|
|
LOG_DEBUG(Kernel_SVC, "called nanoseconds={}", nanoseconds); |
|
|
|
LOG_TRACE(Kernel_SVC, "called nanoseconds={}", nanoseconds); |
|
|
|
|
|
|
|
enum class SleepType : s64 { |
|
|
|
YieldWithoutCoreMigration = 0, |
|
|
|
|