#include "pthread.h"
typedef struct thread_data {
float result;
} thread_data;
float FUNC_THREAD0(int16*_FUNC_THREAD0_INTEGER_A);
float FUNC_THREAD1(int16*_FUNC_THREAD1_INTEGER_A);
float FUNC_THREAD2(int16*_FUNC_THREAD2_INTEGER_A);
static pthread_mutex_t mutex0;
static pthread_mutex_t mutex1;
static pthread_mutex_t mutex2;
void* RunThread0(void *arg){
pthread_mutex_lock(&mutex0);
thread_data *tdata=(thread_data *)arg;
tdata->result = FUNC_THREAD0((int16*)&a);
pthread_mutex_unlock(&mutex0);
pthread_exit(NULL);
}
void* RunThread1(void *arg){
pthread_mutex_lock(&mutex1);
thread_data *tdata=(thread_data *)arg;
tdata->result = FUNC_THREAD1((int16*)&a);
pthread_mutex_unlock(&mutex1);
pthread_exit(NULL);
}
void* RunThread2(void *arg){
pthread_mutex_lock(&mutex2);
thread_data *tdata=(thread_data *)arg;
tdata->result = FUNC_THREAD2((int16*)&a);
pthread_mutex_unlock(&mutex2);
pthread_exit(NULL);
}
pthread_t threads01;
pthread_t threads02;
pthread_t threads03;
thread_data tdata1;
thread_data tdata2;
thread_data tdata3;
tdata1.a = a;
tdata2.a = b;
tdata3.a = c;
int t1
= pthread_create
(&threads01
, NULL
, RunThread0
, (void
*)&tdata1
);
{
cout << "Error in thread creation: " << t1 << endl;
}
int t2
= pthread_create
(&threads02
, NULL
, RunThread1
, (void
*)&tdata2
);
{
cout << "Error in thread creation: " << t2 << endl;
}
int t3
= pthread_create
(&threads03
, NULL
, RunThread2
, (void
*)&tdata3
);
{
cout << "Error in thread creation: " << t3 << endl;
}
void* status1;
void* status2;
void* status3;
t1 = pthread_join(threads01, &status1);
{
cout << "Error in thread join: " << t1 << endl;
}
t2 = pthread_join(threads02, &status2);
{
cout << "Error in thread join: " << t2 << endl;
}
t3 = pthread_join(threads03, &status3);
{
cout << "Error in thread join: " << t3 << endl;
}
return tdata1.result
+ tdata2.result
+ tdata3.result;
}
{
pthread_t threads[3];
thread_data tdata[3];
tdata[0].a = a;
tdata[1].a = b;
tdata[2].a = c;
{
int t
= pthread_create
(&threads
[i
], NULL
, RunThread0
, (void
*)&tdata
[i
]);
{
cout << "Error in thread creation: " << t << endl;
}
}
{
void* status;
int t
= pthread_join
(threads
[i
], &status
);
{
cout << "Error in thread join: " << t << endl;
}
}
return tdata
[0].result
+ tdata
[1].result
+ tdata
[2].result;
}