开发者

Are the "System" and "System Idle Process" PIDs constant on Windows?

On a couple of windows XP systems I've looked at, the "System Idle Process" always has PID 0, and the "System" process always has PID 4. In a Windows program which enumerates processes, is it safe to recognise these processes by these PIDs, or can they be different i开发者_Go百科n some circumstances?


I have production code which assumes these PIDs are static, and it works on XP, Vista and Win 7. Not sure if it's the officially supported method though!

Another couple of ways of approaching the problem:

  1. Sort the list of active PIDs in ascending order - the System Idle and System processes should be the first two.
  2. Check the parent PID of a given process - the System Idle and System processes both have parent PID of 0.


I've never seen them gaining any other PID, and I've seen many Task Managers in my tech-support days. Seems pretty constant to me. Is that guaranteed to remain in all circumstances? I'm really not sure.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜