How can I get a list of processes running on the pc my app runs on? (either win or linux)
Printable View
How can I get a list of processes running on the pc my app runs on? (either win or linux)
windows
EnumProcesses() look it up at msdn
Linux command
$ ps -a
If you mean C function, I have no idea.