X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkTimer.cxx;h=329ca13f04272d44104a3f0926e54e3b0e5b0aa8;hb=1690774bf2aadedc953312252551d1c0c635c51f;hp=cd74428832f4505df7edd11028b359030ab064c5;hpb=f8af47aca583b87ace8a744adc643fa7c55701af;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 */ -