
12 Dec
2006
12 Dec
'06
5:30 a.m.
What is the resolution of the boost sleep() function? This sleeps for about 3 seconds: int main(int argc, char* argv[]) { boost::xtime xTime; int xt = boost::xtime_get(&xTime, boost::TIME_UTC); xTime.sec += 3; boost::thread::sleep(xTime); return 0; } What about sleeping for ~100 millseconds? How is that accomplished? Does this work? xTime.nsec += 100000; boost::thread::sleep(xTime); Boost: 1_33_1 Linux: 2.6 GCC: 4.1.1 Thanks much, Graham ____________________________________________________________________________________ Any questions? Get answers on any topic at www.Answers.yahoo.com. Try it now.