up vote 0 down vote favorite
share [g+] share [fb]

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?

link|improve this question

Which operating system? – gigantt.com Mar 6 '09 at 16:54
The implication is Windows, based on the priority class names, and its common utilization. Were it another OS, I believe such would be indicated. No other common OS I know of uses these priority class names. Note the word 'common', I'm sure there are exceptions. Also, the correct answer is 'Above Normal', in contrast to the currently accepted answer here. – Jeremy Collake Nov 6 '11 at 8:47
Yes, I was asking about Windows. – despart Nov 7 '11 at 17:01
feedback

3 Answers

up vote 1 down vote accepted

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".

link|improve this answer
feedback

From the documentation for CreateProcess:

dwCreationFlags [in]

The flags that control the priority class and the creation of the process. For a list of values, see Process Creation Flags.

This parameter also controls the new process's priority class, which is used to determine the scheduling priorities of the process's threads. For a list of values, see GetPriorityClass. If none of the priority class flags is specified, the priority class defaults to NORMAL_PRIORITY_CLASS unless the priority class of the creating process is IDLE_PRIORITY_CLASS or BELOW_NORMAL_PRIORITY_CLASS. In this case, the child process receives the default priority class of the calling process.

So, in your example, the new process would have normal priority.

link|improve this answer
You misread I believe. Your own quote from MSDN: "In this case, the child process receives the default priority class of the calling process.".. note 'of the calling process'. In other words, it inherits the parent's process priority class. The correct answer is Above Normal priority class. – Jeremy Collake Nov 6 '11 at 8:41
feedback

In Windows process priority is not inherited.

link|improve this answer
Yes, it is. Try it for yourself. From the MSDN quote above "In this case, the child process receives the default priority class of the calling process." .. it means the current priority class of the parent process. Don't believe me? Try it yourself. Don't specify a priority class in CreateProcess and the parent's will be inherited. – Jeremy Collake Nov 6 '11 at 8:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.