diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-04-05 15:48:53 +0200 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 17:36:09 +0200 |
commit | 528b19a84287167d7699465e495b196d216b99db (patch) | |
tree | c3ac61644c1a11fd1cf5ceeb70d1c9f5d4a00aa3 /src/common/thread.h | |
parent | Dynarmic Interface: don't clear cache if JIT has not been created. (diff) | |
download | yuzu-528b19a84287167d7699465e495b196d216b99db.tar yuzu-528b19a84287167d7699465e495b196d216b99db.tar.gz yuzu-528b19a84287167d7699465e495b196d216b99db.tar.bz2 yuzu-528b19a84287167d7699465e495b196d216b99db.tar.lz yuzu-528b19a84287167d7699465e495b196d216b99db.tar.xz yuzu-528b19a84287167d7699465e495b196d216b99db.tar.zst yuzu-528b19a84287167d7699465e495b196d216b99db.zip |
Diffstat (limited to 'src/common/thread.h')
-rw-r--r-- | src/common/thread.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/common/thread.h b/src/common/thread.h index 127cc7e23..52b359413 100644 --- a/src/common/thread.h +++ b/src/common/thread.h @@ -86,6 +86,15 @@ private: std::size_t generation = 0; // Incremented once each time the barrier is used }; +enum class ThreadPriority : u32 { + Low = 0, + Normal = 1, + High = 2, + VeryHigh = 3, +}; + +void SetCurrentThreadPriority(ThreadPriority new_priority); + void SetCurrentThreadName(const char* name); } // namespace Common |