218 Subj : Re: Solaris real-time thread capabilities To : comp.unix.solaris,comp.programming.threads From : capnwhit Date : Wed Sep 07 2005 11:38 am Greg Menke wrote: > Should be handling rollover of your delta; > Oops, sorry, should be; > if( t2 > t1 ) diff = t2 - t1; else diff = (((hrtime_t)-1) - t1) + t2; > Hello Greg, Indeed it should! I will fix the hacked little test program I posted and re-run it (also with a histogram style output). Thanks for pointing that out... I am a firm believer in code-reviews! . 0