X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkTimer.cxx;h=329ca13f04272d44104a3f0926e54e3b0e5b0aa8;hb=1690774bf2aadedc953312252551d1c0c635c51f;hp=cd74428832f4505df7edd11028b359030ab064c5;hpb=957a4c21ae6aa291c6ad57a45e35c14f5c5d05bb;p=clitk.git diff --git a/common/clitkTimer.cxx b/common/clitkTimer.cxx index cd74428..329ca13 100644 --- a/common/clitkTimer.cxx +++ b/common/clitkTimer.cxx @@ -64,13 +64,15 @@ void clitk::Timer::Stop(bool accumulate) mElapsed += (mEnd.ru_utime.tv_usec - mBegin.ru_utime.tv_usec)+ (mEnd.ru_utime.tv_sec - mBegin.ru_utime.tv_sec)*1000000; } + else #elif defined(_WIN32) QueryPerformanceCounter((LARGE_INTEGER*)&mEnd); if (accumulate) { mElapsed += ((mEnd-mBegin)*1000000)/(long double)mFrequency; } + else #endif - else { + { mNumberOfCall--; } } @@ -114,4 +116,3 @@ void clitk::Timer::Reset() // #endif // If UNIX #endif /* end #define CLITKTIMER_CXX */ -