Can we find out the list of process which are currently running on in iOS programmatically?
Somewhat similar to shown here
http://www.techet.net/sysstat/ shown at process tab
Suggestions are always welcome. Thanks
See this other answer I literally just posted.
Take a look at the modified Darwin C-code I posted:
If you look in there, inside OS_get_table()
, you'll find a bunch of commented out printf
statements. If you uncomment and change those, storing the data in some kind of usable data structure, you can collect all this type of information.
Note don't just uncomment all the printf
statements and expect that code to work, though. iOS has limits on the rate at which apps can write to std out, so you'll get throttled if you have tons of printf
s in a short period of time.