There is a lot of information on the interweb regarding the handling of processes on linux, not much on Windows.
I'm using C. I want to calculate the resource usage of all processes. Not just of the system processes, I want to include those who were opened by the user for exmaple.
This can be done using EnumProcesses(), OpenProcess() and GetProcessTimes(). However this does not include processes that are not system processes.
Any thoughts?