Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Process Priority vs Thread Priority

In Linux, a process is a set of threads. Each thread has its own priority! But does a process have a priority too? If so, how is it different from the thread priority? And when a new process is created, how are these values propagated?

like image 958
Karthick Avatar asked Nov 14 '22 03:11

Karthick


1 Answers

Linux implements (kernel level) Threads essentially as Processes. So you fall back to the good old process-priorities there.

See NPTL and nice (for understanding that processes are the first ones to have priorities). Mostly defaults are applied - in case of threads, the thread is a copy, so its priorities should be copied too. Will certainly vary with varying schedulers.

like image 61
Leonidas Avatar answered Dec 06 '22 09:12

Leonidas