How would I find:

  • The number of nice ticks
  • The number of user ticks
  • The number of idle ticks
  • The number of system ticks

I am on Mac OS X Snowleopard with an 2.4Ghz Intel Core 2 Duo processor. Is there any way I could get this info?

link

1  
What problem are you trying to solve? – Daniel Beck Feb 6 at 22:18
@DanielBeck I am programming an activity monitor in Objective-C, and need to confirm the validity of stats. – Farhad Yusufali Feb 6 at 22:21
Do the struct values in /Developer/SDKs/MacOSX10.6.sdk/usr/include/sys/proc.h help? I checked the kernel sources but they aren't provided e.g. as part of the API sysctl uses. Search on opensource.apple.com didn't turn up anything else either, the only non-XNU results are in Libkvm and that wasn't anything useful either. – Daniel Beck Feb 6 at 22:40
2  
Are you sure programmatic access of top output is not an option? – Daniel Beck Feb 6 at 23:49
show 3 more comments
feedback

migrated from superuser.com Feb 7 at 19:50

This question came from our site for computer enthusiasts and power users.

1 Answer

up vote 0 down vote accepted

I ended up using Mach to programatically access, since I couldn't find any other method to do so.

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.