how are pthreads on linux seen by scheduler

烈酒焚心 提交于 2019-11-30 21:36:12

For modern Linux (NPTL pthread implementation), the scheduler schedules threads, a thread is considered a "Light-weight process". pthread_create is implemented in terms of the clone system call.

Linux schedules every thread as if it is a Process with scope as PTHREAD_SCOPE_SYSTEM. The nptl implementation can utilize multiple CPUs.

As Logan said, every thread is scheduled independently.

However, if you wish you may use Linux process control groups to schedule groups of threads instead.

Process control groups make the scheduling a little more inefficient, but it can be much more fair.

One use that has become very popular is to put all of the processes and threads created by each TTY into a control group per TTY. This results in all of a user's graphical applications being scheduled at the same level as his 24-thread kernel compile that he launched in a terminal window. The graphic applications get 50% and the compilation gets 50%. If he opens another terminal window and begins to compile glibc with another 24 threads, it shifts to 33% desktop applications, 33% kernel compile and 33% glibc compile.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!