Skip to content

Instantly share code, notes, and snippets.

@senorprogrammer
Created July 29, 2010 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save senorprogrammer/498535 to your computer and use it in GitHub Desktop.
Save senorprogrammer/498535 to your computer and use it in GitHub Desktop.
#import <mach/mach_time.h>
uint64_t start = mach_absolute_time();
// do stuff to be timed
uint64_t end = mach_absolute_time();
uint64_t elapsed = end - start;
mach_timebase_info_data_t info;
if (mach_timebase_info (&info) != KERN_SUCCESS) {
printf ("mach_timebase_info failed\n");
}
uint64_t nanosecs = elapsed * info.numer / info.denom;
uint64_t millisecs = nanosecs / 1000000;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment