mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-30 20:40:28 -04:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
		
			311 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			311 B
		
	
	
	
		
			C
		
	
	
	
	
	
|  | #include <stdio.h>
 | ||
|  | #include <stdlib.h>
 | ||
|  | #include <pthread.h>
 | ||
|  | 
 | ||
|  | extern void decode1_(int *iarg); | ||
|  | void start_threads_(void) | ||
|  | { | ||
|  |   pthread_t thread1,thread2; | ||
|  |   int iret1,iret2; | ||
|  |   int iarg1=1,iarg2=2; | ||
|  | 
 | ||
|  |   //  iret1 = pthread_create(&thread1,NULL,a2d_,&iarg1);
 | ||
|  |   iret2 = pthread_create(&thread2,NULL,decode1_,&iarg2); | ||
|  | 
 | ||
|  | } |