| 40 | const auto WAIT_TIME = boost::posix_time::seconds(1); |
| 41 | |
| 42 | inline void pleaseYield() { boost::this_thread::yield(); } |
| 43 | inline void pleaseSleep() { boost::this_thread::sleep(WAIT_TIME); } |
| 44 | |
| 45 | /// @brief Quick hack to avoid having to depend on boost::scoped_thread and thus |