summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-03-18 03:27:33 +0100
committerGitHub <noreply@github.com>2019-03-18 03:27:33 +0100
commit30f228a8c93293551839cce3e539e9b7dae7fab2 (patch)
tree7cd8d0a67f15d4f80037343f8eb3e4c80237af51 /src/core/hle/kernel/thread.h
parentMerge pull request #2257 from MerryMage/boost-1.66 (diff)
parentkernel/thread: Expand documentation of nominal_priority and current_priority (diff)
downloadyuzu-30f228a8c93293551839cce3e539e9b7dae7fab2.tar
yuzu-30f228a8c93293551839cce3e539e9b7dae7fab2.tar.gz
yuzu-30f228a8c93293551839cce3e539e9b7dae7fab2.tar.bz2
yuzu-30f228a8c93293551839cce3e539e9b7dae7fab2.tar.lz
yuzu-30f228a8c93293551839cce3e539e9b7dae7fab2.tar.xz
yuzu-30f228a8c93293551839cce3e539e9b7dae7fab2.tar.zst
yuzu-30f228a8c93293551839cce3e539e9b7dae7fab2.zip
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index ccdefeecc..faad5f391 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -401,8 +401,14 @@ private:
VAddr entry_point = 0;
VAddr stack_top = 0;
- u32 nominal_priority = 0; ///< Nominal thread priority, as set by the emulated application
- u32 current_priority = 0; ///< Current thread priority, can be temporarily changed
+ /// Nominal thread priority, as set by the emulated application.
+ /// The nominal priority is the thread priority without priority
+ /// inheritance taken into account.
+ u32 nominal_priority = 0;
+
+ /// Current thread priority. This may change over the course of the
+ /// thread's lifetime in order to facilitate priority inheritance.
+ u32 current_priority = 0;
u64 total_cpu_time_ticks = 0; ///< Total CPU running ticks.
u64 last_running_ticks = 0; ///< CPU tick when thread was last running