Reputation: 11594
Mavericks is mad that my app has too many "Idle Wake Ups". I know this has something to do with timers and the way OS X tries to make my app more power efficient. How can I debug these idle wake ups? Or what are some likely causes?
Upvotes: 7
Views: 6362
Reputation: 11594
Good info from Apple here. Not sure why I didn't find this before. https://developer.apple.com/library/mac/documentation/Performance/Conceptual/power_efficiency_guidelines_osx/Timers.html
Upvotes: 2
Reputation: 490
Possible causes are the typical reasons threads wake up from awaiting:
If you fire up instruments, you can try the System Trace and System Usage tools to diagnose when your threads are waking up.
Upvotes: 4