Commit 602084a1 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov

git-svn-id:...

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@55224 954022d7-b5bf-4e40-9824-e11837661b57
parent bbbed05c
#ifndef _BUILD_TIMER_H_
#ifndef _BUILD_TIMER_H_
#define _BUILD_TIMER_H_
#include "BaseThread.h"
......@@ -13,8 +13,7 @@ namespace NSTimers
struct timespec ts;
clock_gettime(CLOCK_MONOTONIC, &ts);
return (ts.tv_sec * 1000 + (DWORD)(ts.tvnsec / 100000));
}
return (ts.tv_sec * 1000 + (DWORD)(ts.tv_nsec / 100000));
#endif
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment