git-svn-id: svn://elaine/murooma/trunk@257 d8a302eb-03bc-478d-80e4-98257eca68ef
This commit is contained in:
(no author) 2014-09-13 20:42:45 +00:00
parent 3369363453
commit 6d6272d23a
5 changed files with 44 additions and 8 deletions

View file

@ -77,6 +77,12 @@ static void addUs(timeval& tv, int us)
}
/*static long diffMs(const timeval& t1, const timeval& t2)
{
return (((t1.tv_sec - t2.tv_sec) * 1000000) +
(t1.tv_usec - t2.tv_usec))/1000;
}*/
static long getTickCount()
{