mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 00:51:13 -04:00
2c17544f3f
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/WSJT/trunk@1 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
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);
|
|
|
|
}
|