mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 21:40:52 -05:00 
			
		
		
		
	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
		
			
				
	
	
		
			9 lines
		
	
	
		
			119 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			119 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <unistd.h>
 | 
						|
#include "sleep.h"
 | 
						|
 | 
						|
/* usleep(3) */
 | 
						|
void usleep_(unsigned long *microsec)
 | 
						|
{
 | 
						|
  usleep(*microsec);
 | 
						|
}
 |