Linux 内核中的 prio、static_prio、rt_priority

发布于 2024-11-03 06:15:17 字数 28 浏览 0 评论 0原文

task_struct的各个值有什么区别?

What is the difference between each value of task_struct?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风吹雪碎 2024-11-10 06:15:17

这是我对优先级字段的注释。我还包括如何通过“ps”命令呈现数据(该命令从 /proc/pid/stat 等获取数据)。

task_struct.prio:
    0-99 -> Realtime
    100-140 -> Normal priority

ps/stat "prio" field:
    task_struct.prio - MAX_RT_PRIO (100)
    (-100)-(-1) -> Realtime
    0-40 -> Normal Priority

stat "rt_priority" field:
    0 -> normal
    1-99 -> realtime

stat "policy" field:
    0 -> SCHED_OTHER (normal)
    1 -> SCHED_FIFO
    2 -> SCHED_RR (realtime)

Here's my notes on the priority fields. I also include how data is presented via the 'ps' command (which gets it's data from /proc/pid/stat, among other things).

task_struct.prio:
    0-99 -> Realtime
    100-140 -> Normal priority

ps/stat "prio" field:
    task_struct.prio - MAX_RT_PRIO (100)
    (-100)-(-1) -> Realtime
    0-40 -> Normal Priority

stat "rt_priority" field:
    0 -> normal
    1-99 -> realtime

stat "policy" field:
    0 -> SCHED_OTHER (normal)
    1 -> SCHED_FIFO
    2 -> SCHED_RR (realtime)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文