I detected an issue with 'tbb::tick_count' class. Please take a look at a test-case:
...
tbb::tick_count starttick;
tbb::tick_count endtick;
starttick = tbb::tick_count::now();
::Sleep( 5000 ); // 5000 ms = 5 seconds
endtick = tbb::tick_count::now();
_tprintf( _T("Task Delay: %ld secs\\n"), ( int )( endtick - starttick ).seconds() );
...
A delay is 5 seconds. However, '( endtick - starttick ).seconds()' returns 4 seconds. It is reproducible
with a test application compiled in Debug and Release configurations and TBBs v4 updates 3 and 1.
A generic description of the problem is as follows:
If a delay of N seconds is expected then '( endtick - starttick ).seconds()' always returns N-1 seconds.
My Development Environment:
OS : Windows XP 32-bit SP3
IDE: Visual Studio 2005 SP1
TBB: Version 4 Update 3
TBB: Version 4 Update 1



