Changeset 3305 for code/trunk/src/util
- Timestamp:
- Jul 18, 2009, 6:24:38 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/util/Sleep.cc
r3214 r3305 48 48 void usleep(unsigned long microseconds) 49 49 { 50 if (microseconds < 1000)51 COUT(2) << "Warning: Windows cannot sleep less than 1ms, ignoring" << std::endl;50 //if (microseconds < 1000) 51 // COUT(2) << "Warning: Windows cannot sleep less than 1ms, ignoring" << std::endl; 52 52 Sleep(microseconds / 1000); 53 53 }
Note: See TracChangeset
for help on using the changeset viewer.