imagine that you have a process A running with priority AboveNormal that starts another process B without specify the priority. Is the priority of the process B inherited from the priority of the process A? So, what will be the priority on the process B? AboveNormal, Normal or another?
feedback
|
|
If not specified, the priority class is inherited, in contrast to the other response. Don't believe me? Try yourself. It inherits the default priority class of the parent process, not the default priority of a new process, which is where I believe the docs were misread by the person who wrote the accepted answer. The docs should say 'current' instead of 'default', then it reads correctly. The correct answer is thus "Above Normal priority class". | ||||
|
feedback
|
|
From the documentation for CreateProcess: dwCreationFlags [in] So, in your example, the new process would have normal priority. | |||
feedback
|
|
In Windows process priority is not inherited. | |||
feedback
|