iPhone上的性能计数器

我试图在iPhone上找到最佳的incode性能监控方法。

在Windows平台上,我将使用以下功能:

QueryPerformanceCounter((LARGE_INTEGER *)&ctr);
QueryPerformanceFrequency((LARGE_INTEGER *)&freq);

iPhone上有这样的东西吗? 什么是最高分辨率,我可以在不使用诸如乐器或鲨鱼之类的外部工具的情况下计时?


我认为mach_absolute_time是你正在寻找的东西。 了解更多信息:

  • 技术问答QA1398:马赫绝对时间单位
  • 教程:性能和时间
  • 在iPhone上绝对时间
  • 链接地址: http://www.djcxy.com/p/42373.html

    上一篇: Performance counters on the iPhone

    下一篇: Tools for experimental Protocol Design & Development?