summaryrefslogtreecommitdiff
path: root/src/common/thread.h
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2021-11-27 20:31:46 +0100
committerGravatar Fernando Sahmkow2022-06-28 01:10:55 +0200
commita2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5 (patch)
treebebb8e6b2842cf6789a287507966362a01979694 /src/common/thread.h
parentCore: Reimplement Core Timing. (diff)
downloadyuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.tar.gz
yuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.tar.xz
yuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.zip
Core/Common: Corrections to core timing and add critical priority.
Diffstat (limited to 'src/common/thread.h')
-rw-r--r--src/common/thread.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/thread.h b/src/common/thread.h
index a63122516..1552f58e0 100644
--- a/src/common/thread.h
+++ b/src/common/thread.h
@@ -92,6 +92,7 @@ enum class ThreadPriority : u32 {
92 Normal = 1, 92 Normal = 1,
93 High = 2, 93 High = 2,
94 VeryHigh = 3, 94 VeryHigh = 3,
95 Critical = 4,
95}; 96};
96 97
97void SetCurrentThreadPriority(ThreadPriority new_priority); 98void SetCurrentThreadPriority(ThreadPriority new_priority);