WSJT-X/lib/usleep.c
Joe Taylor 3a8232b113 Made a start at implementing an option to use multi-threaded FFTs.
New command-line option for jt9: [-m nthreads].  Default is nthreads=1.
Also refactored a loop in filbig.f90 that was taking far too much
time.


git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@4916 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-01-30 21:28:10 +00:00

9 lines
119 B
C

#include <unistd.h>
#include "sleep.h"
/* usleep(3) */
void usleep_(unsigned long *microsec)
{
usleep(*microsec);
}