| 89 | } |
| 90 | //************************************************************ |
| 91 | int msleep( int ms ) |
| 92 | { |
| 93 | int ret = 0; |
| 94 | #ifdef WIN32 |
| 95 | Sleep(ms); |
| 96 | #else |
| 97 | ret = usleep(ms*1000); |
| 98 | #endif |
| 99 | return ret; |
| 100 | } |
| 101 | //************************************************************ |
no outgoing calls
no test coverage detected