aboutsummaryrefslogtreecommitdiff
path: root/src/common/thread.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-11-27 20:31:46 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2022-06-28 01:10:55 +0200
commita2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5 (patch)
treebebb8e6b2842cf6789a287507966362a01979694 /src/common/thread.h
parent846c994cc9ff3b53d0d3fa3cb3b8fe0418c462c6 (diff)
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 a631225162..1552f58e0f 100644
--- a/src/common/thread.h
+++ b/src/common/thread.h
@@ -92,6 +92,7 @@ enum class ThreadPriority : u32 {
Normal = 1,
High = 2,
VeryHigh = 3,
+ Critical = 4,
};
void SetCurrentThreadPriority(ThreadPriority new_priority);