今天在 iOS 下找相似 Windows 平臺的 GetTickCount 這樣的函數,找到一個叫 mach_absolute_time() 的函數,可是Apple的文檔很是不html
給力,找個半天才比較清楚是怎麼回事,原來這個函數返回的值只是啓動後系統CPU/Bus的clock一個tick數,跟GetTickCount不一樣,app
由於這個 GetTickCount 是系統啓動後的毫秒數,因此要得到系統啓動後的時間須要進行一次轉換,還好Apple給出了一個官方的方法ide
Technical Q&A QA1398函數
Mach Absolute Time Unitsui
https://developer.apple.com/library/mac/#qa/qa1398/_index.htmlspa
另外我找到一些關於這個函數的說明文檔以下:orm
http://www.macresearch.org/tutorial_performance_and_timehtm
mach_absolute_time is a CPU/Bus dependent function that returns a value based on the number of "ticks" since the system started up.ip
uint64_t mach_absolute_time(void);rem
Declared In: <mach/mach_time.h>
Dependency: com.apple.kernel.mach
This function returns a Mach absolute time value for the current wall clock time in units of uint64_t.
https://developer.apple.com/library/mac/#documentation/Performance/Conceptual/LaunchTime/Articles/MeasuringLaunch.html
mach_absolute_time reads the CPU time base register and is the basis for other time measurement functions.
還有一個彷佛是實現代碼:
http://opensource.apple.com/source/Libc/Libc-186/mach.subproj/mach_absolute_time.c
#include<stdint.h>
#include<mach/clock.h>
extern mach_port_t clock_port;
uint64_t mach_absolute_time(void)
{
#ifdefined(__ppc__)
__asm__ volatile("0: mftbu r3");
__asm__ volatile("mftb r4");
__asm__ volatile("mftbu r0");
__asm__ volatile("cmpw r0,r3");
__asm__ volatile("bne- 0b");
#else
mach_timespec_t now;
(void)clock_get_time(clock_port, &now);
return (uint64_t)now.tv_sec * NSEC_PER_SEC + now.tv_nsec;
#endif
}
+ (uint64_t)GetPIDTimeInNanoseconds
{
uint64_t start;
uint64_t end;
uint64_t elapsed = 0;
Nanoseconds elapsedNano;
for(int i = 0; i < 1000; i++)
{
// Start the clock.
start = mach_absolute_time();
// Call getpid. This will produce inaccurate results because
// we're only making a single system call. For more accurate
// results you should call getpid multiple times and average
// the results.
(void) getpid();
// Stop the clock.
end = mach_absolute_time();
// Calculate the duration.
elapsed += (end - start);
}
elapsed = elapsed / 1000;
// Convert to nanoseconds.
// Have to do some pointer fun because AbsoluteToNanoseconds
// works in terms of UnsignedWide, which is a structure rather
// than a proper 64-bit integer.
elapsedNano = AbsoluteToNanoseconds( *(AbsoluteTime *) &elapsed );
return * (uint64_t *) &elapsedNano;
}