- Return an error if appropriate from start_threads_.

- Cast arguments to pthread_create as needed.



git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@1220 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Diane Bruce 2009-05-15 14:06:08 +00:00
parent cab19b6e0e
commit 8c3c346192
1 changed files with 7 additions and 7 deletions

View File

@ -20,11 +20,11 @@ int start_threads_(int *ndevin, int *ndevout, short y1[], short y2[],
int iret1,iret2,iret3;
int iarg1=1, iarg2=2, iarg3=3;
/* snd_pcm_start */
// printf("start_threads: creating thread for a2d\n");
iret1 = pthread_create(&thread1,NULL,a2d_,&iarg1);
// printf("start_threads: creating thread for decode1_\n");
iret2 = pthread_create(&thread2,NULL,decode1_,&iarg2);
// printf("start_threads: creating thread for recvpkt_\n");
iret3 = pthread_create(&thread3,NULL,recvpkt_,&iarg3);
iret1 = pthread_create(&thread1,NULL,
(void *)a2d_,&iarg1);
iret2 = pthread_create(&thread2,NULL,
(void *)decode1_,&iarg2);
iret3 = pthread_create(&thread3,NULL,
(void *)recvpkt_,&iarg3);
return(iret1 | iret2 | iret3);
}