Karthick
Karthick

Reputation: 2882

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?

Upvotes: 6

Views: 2745

Answers (1)

Leonidas
Leonidas

Reputation: 2438

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.

Upvotes: 1

Related Questions