views:

435

answers:

1

I am looking for an OS level API to account for cycles consumed by a specific thread in OSX.

This is similar to this question (and answer) but in OSX.

+1  A: 

You should be able to get this info from the thread_basic_info structure, returned by a call to thread_info.

Virgil
Thanks! I will give it a try!!
Pokot0