#ifndef __MicroSleep_h_ #define __MicroSleep_h_ #include "MiscSupport.h" ///////////////////////////////////////////////////////////////////// // Microsleep - sleep for x microseconds without CPU activity. // This is pretty accurate down to a millisecond. It seems to have // trouble below that. ///////////////////////////////////////////////////////////////////// void microSleep(long int seconds, long int microSeconds); void microSleep(TimeVal::Microseconds microSeconds); #endif