I'm trying to calculate the value of pi using multiple threads in ubuntu using c. I'm not perfectly familiar with the variables that the pthread_create and pthread_join should get as input, as well as how to deal with type 'void'. I planted some printf's along the code in order to locate the source of the problem and apparently the problem is in the 'pthread_join' in the last 'for loop' in the main()
this is my code:
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <assert.h>
#include <pthread.h>
void* drawpoints (void* arg)
{
int i;
int* counter;
double x,y,dist; /*coordinates of point*/
int* n = arg;
*counter = 0;
srand(time(NULL));
for (i = 0; i<*n; i++)
{
/*square is of size 1X1 - 0<=x,y<=1 -> radius = 0.5*/
x = (double)rand()/(double)RAND_MAX;
y = (double)rand()/(double)RAND_MAX;
/*0.5 is the center of circle*/
dist = sqrt(pow(x-0.5,2)+pow(y-0.5,2));
if (dist<0.5)
{
*counter++;
}
/* printf("x = %f\ny = %f\ndist = %f\ncounter = %d\n\n",x,y,dist,*counter);*/
}
return (void*)counter;
}
int main (int argc, char** argv)
{
assert(argc == 3);
int rc;
int totalThreads,n,i,counter,numDots;
void* currPtr;
int* curr;
pthread_t* p_list = (pthread_t*)malloc(sizeof(pthread_t)*atoi(argv[2]));
n = atoi(argv[1]);
totalThreads = atoi(argv[2]);
numDots = n/totalThreads;
for (i = 0; i<totalThreads; i++)
{
rc = pthread_create(&(p_list[i]), NULL, drawpoints, &numDots); assert(rc == 0);
}
for (i = 0; i<totalThreads; i++)
{
printf("%lu\ntry\n\n",p_list[i]);
rc = pthread_join(p_list[i], &currPtr); assert(rc == 0);
curr = currPtr;
counter+=(*curr);
}
printf("%f\n\n",(double)counter/n*4);
free(p_list);
return 0;
}
this is the log I get in Terminal:
3079416688
try
Segmentation fault