Hi, 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?
|
|
|||
|
|
|
In Windows process priority is not inherited. |
||
|
|
|
|
From the documentation for CreateProcess: dwCreationFlags [in] So, in your example, the new process would have normal priority. |
||
|
|
