问题
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 in some circumstances?
回答1:
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:
- Sort the list of active PIDs in ascending order - the System Idle and System processes should be the first two.
- Check the parent PID of a given process - the System Idle and System processes both have parent PID of 0.
回答2:
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.
来源:https://stackoverflow.com/questions/2643902/are-the-system-and-system-idle-process-pids-constant-on-windows