Skip to content

Instantly share code, notes, and snippets.

@antirez
Created January 23, 2014 16:36
Show Gist options
  • Save antirez/8581896 to your computer and use it in GitHub Desktop.
Save antirez/8581896 to your computer and use it in GitHub Desktop.
/* Return the UNIX time in microseconds */
long long ustime(void) {
struct timeval tv;
long long ust;
gettimeofday(&tv, NULL);
ust = ((long long)tv.tv_sec)*1000000;
ust += tv.tv_usec;
return ust;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment