threads.mach
来自「GCC编译器源代码」· MACH 代码 · 共 24 行
MACH
24 行
This readme refers to the file thr-mach.c.Under mach, thread priorities are kinda strange-- any given thread hasa MAXIMUM priority and a BASE priority. The BASE priority is thecurrent priority of the thread and the MAXIMUM is the maximum possiblepriority the thread can assume. The developer can lower, but neverraise the maximum priority.The gcc concept of thread priorities is that they run at one of threelevels; interactive, background, and low.Under mach, this is translated to:interactive -- set priority to maximumbackground -- set priority to 2/3 of maximumlow -- set priority to 1/3 of maximumThis means that it is possible for a thread with the priority ofinteractive to actually run at a lower priority than another threadwith a background, or even low, priority if the developer has modifiedthe maximum priority.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?