WSJT-X/lib/sleep_msec.f90
Edson W. R. Pereira a1083d17b3 1. Fixed issue with jt9 process not sleeping under Linux.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3103 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2013-03-26 14:00:51 +00:00

5 lines
82 B
Fortran

subroutine sleep_msec(n)
call usleep(n*1000)
return
end subroutine sleep_msec