diff options
author | bunnei <bunneidev@gmail.com> | 2021-05-01 21:17:45 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2021-05-06 01:40:53 +0200 |
commit | 57f80c74b662bd6337edc162eff8808cf7001dcf (patch) | |
tree | bca63a160c53120b859f1c949fe1beed023776e3 /src/core/hle/kernel | |
parent | fixup! hle: kernel: Improve MapSharedMemory and implement UnmapSharedMemory. (diff) | |
download | yuzu-57f80c74b662bd6337edc162eff8808cf7001dcf.tar yuzu-57f80c74b662bd6337edc162eff8808cf7001dcf.tar.gz yuzu-57f80c74b662bd6337edc162eff8808cf7001dcf.tar.bz2 yuzu-57f80c74b662bd6337edc162eff8808cf7001dcf.tar.lz yuzu-57f80c74b662bd6337edc162eff8808cf7001dcf.tar.xz yuzu-57f80c74b662bd6337edc162eff8808cf7001dcf.tar.zst yuzu-57f80c74b662bd6337edc162eff8808cf7001dcf.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/kernel/k_scoped_scheduler_lock_and_sleep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_scoped_scheduler_lock_and_sleep.h b/src/core/hle/kernel/k_scoped_scheduler_lock_and_sleep.h index 1bfbbcfe2..b5d405744 100644 --- a/src/core/hle/kernel/k_scoped_scheduler_lock_and_sleep.h +++ b/src/core/hle/kernel/k_scoped_scheduler_lock_and_sleep.h @@ -17,7 +17,7 @@ namespace Kernel { class [[nodiscard]] KScopedSchedulerLockAndSleep { public: - explicit KScopedSchedulerLockAndSleep(KernelCore& kernel, KThread* t, s64 timeout) + explicit KScopedSchedulerLockAndSleep(KernelCore & kernel, KThread * t, s64 timeout) : kernel(kernel), thread(t), timeout_tick(timeout) { // Lock the scheduler. kernel.GlobalSchedulerContext().scheduler_lock.Lock(); |